Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Announce support for Python 3.8 #107

Merged
merged 2 commits into from
Dec 18, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -6,6 +6,7 @@ python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"

# also test PyPy; do this on Trusty due to
# https://travis-ci.community/t/pypy-2-7-on-xenial/889
Expand Down
11 changes: 2 additions & 9 deletions Dockerfile
Expand Up @@ -5,18 +5,11 @@ RUN apt-get update && apt-get install -y git-core mercurial
# Update pyenv for access to newer Python releases.
RUN cd /.pyenv \
&& git fetch \
&& git checkout v1.2.8

ENV PYPY_VERSION=pypy2.7-5.10.0 \
PYPY3_VERSION=pypy3.5-5.10.1

# install a newer version op pypy and pypy3 that doesn't have troubles
RUN pyenv install "$PYPY_VERSION"
RUN pyenv install "$PYPY3_VERSION"
&& git checkout v1.2.15

# only install certain versions for tox to use
RUN pyenv versions
RUN pyenv global system 2.7.15 3.5.6 3.6.6 3.7.0 "$PYPY_VERSION" "$PYPY3_VERSION"
RUN pyenv global system 2.7.15 3.5.7 3.6.9 3.7.5 3.8.0 pypy2.7-7.2.0 pypy3.6-7.2.0

RUN git config --global user.email "bumpversion_test@example.org"
RUN git config --global user.name "Bumpversion Test"
Expand Down
3 changes: 3 additions & 0 deletions appveyor.yml
Expand Up @@ -20,6 +20,9 @@ environment:
- PYTHON: "C:/Python37"
TOXENV: "py37"

- PYTHON: "C:/Python38"
TOXENV: "py38"

init:
- "ECHO %TOXENV%"
- "ECHO %PYTHON%"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -40,6 +40,7 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: PyPy',
],
)
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py27-configparser, py35, py36, py37, pypy, pypy3
envlist = py27, py27-configparser, py35, py36, py37, py38, pypy, pypy3

[testenv]
passenv = HOME
Expand Down