Skip to content

Commit f461dd4

Browse files
authored
Merge pull request #1311 from gliptak/python1
Add Python 3.9 to build
2 parents 49a59d7 + 213cd83 commit f461dd4

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/workflows/test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [2.7, 3.5, 3.6, 3.7, 3.8]
11+
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
1212

1313
steps:
1414
- uses: actions/checkout@v2

.travis.yml

+4
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ jobs:
4343
env: TOXENV=py38
4444
- python: 3.8
4545
env: TOXENV=py38-functional
46+
- python: 3.9
47+
env: TOXENV=py39
48+
- python: 3.9
49+
env: TOXENV=py39-functional
4650
- stage: deploy
4751
script: skip
4852
deploy:

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,6 @@
7979
"Programming Language :: Python :: 3.6",
8080
"Programming Language :: Python :: 3.7",
8181
"Programming Language :: Python :: 3.8",
82+
"Programming Language :: Python :: 3.9",
8283
],
8384
)

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
envlist =
3-
py27, py3{5,6,7,8}
4-
py27-functional, py3{5,6,7,8}-functional
3+
py27, py3{5,6,7,8,9}
4+
py27-functional, py3{5,6,7,8,9}-functional
55

66
[testenv]
77
passenv = TOXENV CI TRAVIS TRAVIS_*

0 commit comments

Comments
 (0)