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

Add support for Python 3.8 #486

Merged
merged 3 commits into from
Nov 22, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions appveyor.yml → .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,18 @@ environment:
- TOXENV: "py35-pytestlatest"
- TOXENV: "py36-pytestlatest"
- TOXENV: "py37-pytestlatest"
- TOXENV: "py37-pytestmaster"
- TOXENV: "py37-pytestfeatures"
- TOXENV: "py38-pytestlatest"
- TOXENV: "py38-pytestmaster"
- TOXENV: "py38-pytestfeatures"

install:
- C:\Python37\python -m pip install -U pip setuptools
- C:\Python37\python -m pip install -U tox setuptools_scm
- C:\Python38\python -m pip install -U pip setuptools
- C:\Python38\python -m pip install -U tox setuptools_scm

build: false # Not a C# project, build stuff at the test step instead.

test_script:
- C:\Python37\python -m tox
- C:\Python38\python -m tox

# We don't deploy anything on tags with AppVeyor, we use Travis instead, so we
# might as well save resources
Expand Down
14 changes: 8 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
cache:
directories:
- $HOME/.cache/pre-commit
- python: '3.7'
env: TOXENV=py37-pytestlatest
- python: '3.8'
env: TOXENV=py38-pytestlatest
- python: '2.7'
env: TOXENV=py27-pytestlatest

Expand All @@ -43,12 +43,14 @@ jobs:
- python: "3.6"
env: TOXENV=py36-pytestlatest
- python: "3.7"
env: TOXENV=py37-pytestmaster
- python: "3.7"
env: TOXENV=py37-pytestfeatures
env: TOXENV=py37-pytestlatest
- python: "3.8"
env: TOXENV=py38-pytestmaster
- python: "3.8"
env: TOXENV=py38-pytestfeatures

- stage: deploy
python: '3.7'
python: '3.8'
env:
install: pip install -U setuptools setuptools_scm
script: skip
Expand Down
1 change: 1 addition & 0 deletions changelog/486.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add support for Python 3.8.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,6 @@
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tox]
envlist=
linting
py{27,34,35,36,37}-pytestlatest
py37-pytest{master,features}
py{27,34,35,36,37,38}-pytestlatest
py38-pytest{master,features}

[testenv]
passenv = USER USERNAME
Expand Down