Skip to content

Commit 66e74c8

Browse files
authored
Add support for Python 3.8 (#486)
Add support for Python 3.8
2 parents cd26963 + 7eb0859 commit 66e74c8

File tree

5 files changed

+18
-13
lines changed

5 files changed

+18
-13
lines changed

appveyor.yml renamed to .appveyor.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,18 @@ environment:
55
- TOXENV: "py35-pytestlatest"
66
- TOXENV: "py36-pytestlatest"
77
- TOXENV: "py37-pytestlatest"
8-
- TOXENV: "py37-pytestmaster"
9-
- TOXENV: "py37-pytestfeatures"
8+
- TOXENV: "py38-pytestlatest"
9+
- TOXENV: "py38-pytestmaster"
10+
- TOXENV: "py38-pytestfeatures"
1011

1112
install:
12-
- C:\Python37\python -m pip install -U pip setuptools
13-
- C:\Python37\python -m pip install -U tox setuptools_scm
13+
- C:\Python38\python -m pip install -U pip setuptools
14+
- C:\Python38\python -m pip install -U tox setuptools_scm
1415

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

1718
test_script:
18-
- C:\Python37\python -m tox
19+
- C:\Python38\python -m tox
1920

2021
# We don't deploy anything on tags with AppVeyor, we use Travis instead, so we
2122
# might as well save resources

.travis.yml

+8-6
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
cache:
3131
directories:
3232
- $HOME/.cache/pre-commit
33-
- python: '3.7'
34-
env: TOXENV=py37-pytestlatest
33+
- python: '3.8'
34+
env: TOXENV=py38-pytestlatest
3535
- python: '2.7'
3636
env: TOXENV=py27-pytestlatest
3737

@@ -43,12 +43,14 @@ jobs:
4343
- python: "3.6"
4444
env: TOXENV=py36-pytestlatest
4545
- python: "3.7"
46-
env: TOXENV=py37-pytestmaster
47-
- python: "3.7"
48-
env: TOXENV=py37-pytestfeatures
46+
env: TOXENV=py37-pytestlatest
47+
- python: "3.8"
48+
env: TOXENV=py38-pytestmaster
49+
- python: "3.8"
50+
env: TOXENV=py38-pytestfeatures
4951

5052
- stage: deploy
51-
python: '3.7'
53+
python: '3.8'
5254
env:
5355
install: pip install -U setuptools setuptools_scm
5456
script: skip

changelog/486.feature

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add support for Python 3.8.

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,6 @@
4646
"Programming Language :: Python :: 3.5",
4747
"Programming Language :: Python :: 3.6",
4848
"Programming Language :: Python :: 3.7",
49+
"Programming Language :: Python :: 3.8",
4950
],
5051
)

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[tox]
22
envlist=
33
linting
4-
py{27,34,35,36,37}-pytestlatest
5-
py37-pytest{master,features}
4+
py{27,34,35,36,37,38}-pytestlatest
5+
py38-pytest{master,features}
66

77
[testenv]
88
passenv = USER USERNAME

0 commit comments

Comments
 (0)