Skip to content

Commit

Permalink
Merge pull request #280 from jairhenrique/python310
Browse files Browse the repository at this point in the history
Add support to python 3.10
  • Loading branch information
mpdavis authored Oct 12, 2021
2 parents 18685aa + 43f06a3 commit a374301
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "pypy3"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"]
os: [ubuntu-latest, macos-latest, windows-latest]
exclude:
- os: macos-latest
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def get_packages(package):
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Utilities",
],
Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
minversion = 3.4.0
envlist =
py{36,37,38,39,py3}-{base,cryptography-only,pycryptodome-norsa,compatibility},
py{36,37,38,39,310,py3}-{base,cryptography-only,pycryptodome-norsa,compatibility},
lint
skip_missing_interpreters = True

Expand All @@ -11,6 +11,7 @@ python =
3.7: py37-{base,cryptography-only,pycryptodome-norsa,compatibility}
3.8: py38-{base,cryptography-only,pycryptodome-norsa,compatibility}
3.9: py39-{base,cryptography-only,pycryptodome-norsa,compatibility}
3.10: py310-{base,cryptography-only,pycryptodome-norsa,compatibility}
pypy3: pypy3-{base,cryptography-only,pycryptodome-norsa,compatibility}

[testenv:basecommand]
Expand Down Expand Up @@ -56,7 +57,7 @@ extras =
compatibility: {[testenv:compatibility]extras}

[testenv:lint]
basepython = python3.8
basepython = python3.10
skip_install= True
deps =
flake8
Expand All @@ -69,7 +70,7 @@ commands =


[testenv:lintfix]
basepython = python3.8
basepython = python3.10
skip_install= True
deps =
isort
Expand Down

0 comments on commit a374301

Please sign in to comment.