Skip to content

Commit

Permalink
Test python3.9 support
Browse files Browse the repository at this point in the history
  • Loading branch information
dolfinus committed Aug 17, 2020
1 parent b07d4af commit 2fde432
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
23 changes: 15 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,63 +2,70 @@ language: python
cache: pip
jobs:
include:
- name: "Python 3.9"
dist: xenial
python: '3.9-dev'
install:
- pip install -r requirements.txt
script:
- flake8 --count
- python setup.py bdist_wheel sdist
- name: "Python 3.8"
dist: xenial
python: '3.8'
install:
- pip install -r requirements.txt
script:
- flake8 --count
- python setup.py bdist_wheel
- python setup.py bdist_wheel sdist
- name: "Python 3.7"
dist: xenial
python: '3.7'
install:
- pip install -r requirements.txt
script:
- flake8 --count
- python setup.py bdist_wheel
- python setup.py bdist_wheel sdist
- name: "Python 3.6"
dist: xenial
python: '3.6'
install:
- pip install -r requirements.txt
script:
- flake8 --count
- python setup.py bdist_wheel
- python setup.py bdist_wheel sdist
- name: "Python 3.5"
dist: xenial
python: '3.5'
install:
- pip install -r requirements.txt
- flake8 --count
script:
- python setup.py bdist_wheel
- python setup.py bdist_wheel sdist
- name: "Python 3.4"
dist: trusty
python: '3.4'
install:
- pip install -I -r requirements.txt
script:
- flake8 --count --ignore=F401 .
- python setup.py bdist_wheel
- python setup.py bdist_wheel sdist
- name: "Python 3.3"
dist: trusty
python: '3.3'
install:
- pip install -I -r requirements.txt
script:
- flake8 --count --ignore=F401 .
- python setup.py bdist_wheel
- python setup.py bdist_wheel sdist
- name: "Python 2.7"
dist: xenial
python: '2.7'
install:
- pip install -r requirements.txt
script:
- flake8 --count
- python setup.py bdist_wheel
before_deploy: python setup.py sdist
- python setup.py bdist_wheel sdist
deploy:
- provider: pypi
user: dolfinus
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
Expand Down

0 comments on commit 2fde432

Please sign in to comment.