Skip to content

Commit

Permalink
Adding Python 3.9 and 3.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
chadgates committed Jan 6, 2022
1 parent f213e67 commit fff691b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ language: python
python:
- '3.7'
- '3.8'
- '3.9'
- '3.10.1'
install:
- pip install -e ".[tests]"
script:
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
install_requires = [
"asn1crypto==1.4.0",
"oscrypto==1.2.1",
"pyOpenSSL==20.0.1",
"pyOpenSSL==21.0.0",
]

tests_require = [
Expand Down Expand Up @@ -37,6 +37,8 @@
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Security :: Cryptography",
"Topic :: Communications",
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py37, py38
envlist = py37, py38, py39, py310

[testenv]
commands = {envpython} setup.py test
Expand Down

0 comments on commit fff691b

Please sign in to comment.