Skip to content

Commit

Permalink
Merge pull request #2580 from rooterkyberian/py310
Browse files Browse the repository at this point in the history
test against python 3.10
  • Loading branch information
bagerard committed Oct 25, 2021
2 parents 811dc12 + 9a414ed commit 880a8ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,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]
MONGODB: [$MONGODB_4_0]
PYMONGO: [$PYMONGO_3_11]
include:
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ def run_tests(self):
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Database",
Expand All @@ -110,7 +112,7 @@ def run_tests(self):
extra_opts = {
"packages": find_packages(exclude=["tests", "tests.*"]),
"tests_require": [
"pytest<5.0",
"pytest",
"pytest-cov",
"coverage",
"blinker",
Expand Down

0 comments on commit 880a8ef

Please sign in to comment.