Skip to content

Commit

Permalink
add python 3.9 to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Nov 26, 2020
1 parent c8a94f4 commit e4affea
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ jobs:
dist: xenial
sudo: true
env: TACKPY=false
- python: 3.9
dist: xenial
sudo: true
env: TACKPY=false
- python: 2.7
env: TACKPY=true
- python: 3.4
Expand All @@ -63,6 +67,10 @@ jobs:
dist: xenial
sudo: true
env: M2CRYPTO=true
- python: 3.9
dist: xenial
sudo: true
env: M2CRYPTO=true
- python: 2.7
env: PYCRYPTO=true
- python: 3.5
Expand All @@ -73,13 +81,13 @@ jobs:
dist: xenial
sudo: true
env: PYCRYPTO=true
# pycrypto doesn't work on Python 3.8 as time module doesn't have clock()
# pycrypto doesn't work on Python 3.8 or 3.9 as time module doesn't have clock()
# any more
#- python: 3.8
# dist: xenial
# sudo: true
# env: PYCRYPTO=true
- python: 3.7
- python: 3.9
dist: xenial
sudo: true
env: PYCRYPTODOME=true
Expand All @@ -97,6 +105,10 @@ jobs:
dist: xenial
sudo: true
env: GMPY=true
- python: 3.9
dist: xenial
sudo: true
env: GMPY=true
- python: 2.7
env: GMPY2=true
- python: 3.5
Expand All @@ -111,6 +123,10 @@ jobs:
dist: xenial
sudo: true
env: GMPY2=true
- python: 3.9
dist: xenial
sudo: true
env: GMPY2=true
- python: 2.7
env: M2CRYPTO=true PYCRYPTO=true GMPY=true GMPY2=true
- python: 3.5
Expand All @@ -125,6 +141,10 @@ jobs:
dist: xenial
sudo: true
env: M2CRYPTO=true GMPY=true GMPY2=true
- python: 3.9
dist: xenial
sudo: true
env: M2CRYPTO=true GMPY=true GMPY2=true

before_install:
- |
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
'package1': ['LICENSE', 'README.md']},
install_requires=['ecdsa'],
obsoletes=["tlslite"],
python_requires=">=2.6, !=3.0.*, !=3.1.*, !=3.2.*",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
Expand All @@ -39,6 +40,8 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking'
Expand Down

0 comments on commit e4affea

Please sign in to comment.