diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2019-05-31 18:28:33 -0400 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2019-05-31 18:28:33 -0400 |
commit | f9ed04eddf6e6b919dfe0872e753c5600cd97f99 (patch) | |
tree | fa0b5ada75f28b7c56a04057852b9df9476328de | |
parent | 1db410696ffbd18c7c6703afc362a8604c3e3f2c (diff) |
Add explicit (tested) support for Python 3.8
Cannot be added to Paramiko <2.4 due to Travis
inability to test Python 2.6->3.7+
-rw-r--r-- | .travis.yml | 8 | ||||
-rw-r--r-- | setup.py | 1 |
2 files changed, 6 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index d63d001d..2e1fe9e0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,4 @@ +dist: xenial language: python sudo: false cache: @@ -8,17 +9,18 @@ python: - "3.4" - "3.5" - "3.6" - - "3.7-dev" + - "3.7" + - "3.8-dev" - "pypy-5.6.0" matrix: allow_failures: - - python: "3.7-dev" + - python: "3.8-dev" # Explicitly test against our oldest supported cryptography.io, in addition # to whatever the latest default is. include: - python: 2.7 env: "OLDEST_CRYPTO=1.5" - - python: 3.6 + - python: 3.7 env: "OLDEST_CRYPTO=1.5" install: # Ensure modern pip/etc to avoid some issues w/ older worker environs @@ -71,6 +71,7 @@ setup( "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", ], install_requires=[ "bcrypt>=3.1.3", |