Skip to content

Commit 60a0eef

Browse files
authored
Added py310 to support matrix (#1051)
1 parent 7637b1a commit 60a0eef

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,21 @@ jobs:
1414
- {VERSION: "3.7", TOXENV: "py37"}
1515
- {VERSION: "3.8", TOXENV: "py38"}
1616
- {VERSION: "3.9", TOXENV: "py39"}
17+
- {VERSION: "3.10", TOXENV: "py310"}
1718
- {VERSION: "pypy3", TOXENV: "pypy3"}
1819
# -cryptographyMain
1920
- {VERSION: "3.6", TOXENV: "py36-cryptographyMain"}
2021
- {VERSION: "3.7", TOXENV: "py37-cryptographyMain"}
2122
- {VERSION: "3.8", TOXENV: "py38-cryptographyMain"}
2223
- {VERSION: "3.9", TOXENV: "py39-cryptographyMain"}
24+
- {VERSION: "3.10", TOXENV: "py310-cryptographyMain"}
2325
- {VERSION: "pypy3", TOXENV: "pypy3-cryptographyMain"}
2426
# -cryptographyMinimum
2527
- {VERSION: "3.6", TOXENV: "py36-cryptographyMinimum"}
2628
- {VERSION: "3.7", TOXENV: "py37-cryptographyMinimum"}
2729
- {VERSION: "3.8", TOXENV: "py38-cryptographyMinimum"}
2830
- {VERSION: "3.9", TOXENV: "py39-cryptographyMinimum"}
31+
- {VERSION: "3.10", TOXENV: "py310-cryptographyMinimum"}
2932
- {VERSION: "pypy3", TOXENV: "pypy3-cryptographyMinimum"}
3033
# Random order
3134
- {VERSION: "3.9", TOXENV: "py39-randomorder"}

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,14 @@ def find_meta(meta):
8181
"Programming Language :: Python :: 3.7",
8282
"Programming Language :: Python :: 3.8",
8383
"Programming Language :: Python :: 3.9",
84+
"Programming Language :: Python :: 3.10",
8485
"Programming Language :: Python :: Implementation :: CPython",
8586
"Programming Language :: Python :: Implementation :: PyPy",
8687
"Topic :: Security :: Cryptography",
8788
"Topic :: Software Development :: Libraries :: Python Modules",
8889
"Topic :: System :: Networking",
8990
],
90-
python_requires=(">=3.6"),
91+
python_requires=">=3.6",
9192
packages=find_packages(where="src"),
9293
package_dir={"": "src"},
9394
install_requires=[

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = {pypy,pypy3,py27,py36,py37,py38,py39}{,-cryptographyMain,-cryptographyMinimum}{,-randomorder},py37-twistedTrunk,pypi-readme,check-manifest,flake8,docs,coverage-report
2+
envlist = {pypy,pypy3,py27,py36,py37,py38,py39,py310}{,-cryptographyMain,-cryptographyMinimum}{,-randomorder},py37-twistedTrunk,pypi-readme,check-manifest,flake8,docs,coverage-report
33

44
[testenv]
55
whitelist_externals =

0 commit comments

Comments
 (0)