Skip to content

Commit 2fde432

Browse files
committed
Test python3.9 support
1 parent b07d4af commit 2fde432

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

.travis.yml

+15-8
Original file line numberDiff line numberDiff line change
@@ -2,63 +2,70 @@ language: python
22
cache: pip
33
jobs:
44
include:
5+
- name: "Python 3.9"
6+
dist: xenial
7+
python: '3.9-dev'
8+
install:
9+
- pip install -r requirements.txt
10+
script:
11+
- flake8 --count
12+
- python setup.py bdist_wheel sdist
513
- name: "Python 3.8"
614
dist: xenial
715
python: '3.8'
816
install:
917
- pip install -r requirements.txt
1018
script:
1119
- flake8 --count
12-
- python setup.py bdist_wheel
20+
- python setup.py bdist_wheel sdist
1321
- name: "Python 3.7"
1422
dist: xenial
1523
python: '3.7'
1624
install:
1725
- pip install -r requirements.txt
1826
script:
1927
- flake8 --count
20-
- python setup.py bdist_wheel
28+
- python setup.py bdist_wheel sdist
2129
- name: "Python 3.6"
2230
dist: xenial
2331
python: '3.6'
2432
install:
2533
- pip install -r requirements.txt
2634
script:
2735
- flake8 --count
28-
- python setup.py bdist_wheel
36+
- python setup.py bdist_wheel sdist
2937
- name: "Python 3.5"
3038
dist: xenial
3139
python: '3.5'
3240
install:
3341
- pip install -r requirements.txt
3442
- flake8 --count
3543
script:
36-
- python setup.py bdist_wheel
44+
- python setup.py bdist_wheel sdist
3745
- name: "Python 3.4"
3846
dist: trusty
3947
python: '3.4'
4048
install:
4149
- pip install -I -r requirements.txt
4250
script:
4351
- flake8 --count --ignore=F401 .
44-
- python setup.py bdist_wheel
52+
- python setup.py bdist_wheel sdist
4553
- name: "Python 3.3"
4654
dist: trusty
4755
python: '3.3'
4856
install:
4957
- pip install -I -r requirements.txt
5058
script:
5159
- flake8 --count --ignore=F401 .
52-
- python setup.py bdist_wheel
60+
- python setup.py bdist_wheel sdist
5361
- name: "Python 2.7"
5462
dist: xenial
5563
python: '2.7'
5664
install:
5765
- pip install -r requirements.txt
5866
script:
5967
- flake8 --count
60-
- python setup.py bdist_wheel
61-
before_deploy: python setup.py sdist
68+
- python setup.py bdist_wheel sdist
6269
deploy:
6370
- provider: pypi
6471
user: dolfinus

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
"Programming Language :: Python :: 3.6",
3131
"Programming Language :: Python :: 3.7",
3232
"Programming Language :: Python :: 3.8",
33+
"Programming Language :: Python :: 3.9",
3334
"License :: OSI Approved :: MIT License",
3435
"Operating System :: OS Independent",
3536
],

0 commit comments

Comments
 (0)