Skip to content

Commit 880a8ef

Browse files
authored
Merge pull request #2580 from rooterkyberian/py310
test against python 3.10
2 parents 811dc12 + 9a414ed commit 880a8ef

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/github-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
strategy:
4545
fail-fast: false
4646
matrix:
47-
python-version: [3.6, 3.7, 3.8, 3.9, pypy3]
47+
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", pypy3]
4848
MONGODB: [$MONGODB_4_0]
4949
PYMONGO: [$PYMONGO_3_11]
5050
include:

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ def run_tests(self):
101101
"Programming Language :: Python :: 3.6",
102102
"Programming Language :: Python :: 3.7",
103103
"Programming Language :: Python :: 3.8",
104+
"Programming Language :: Python :: 3.9",
105+
"Programming Language :: Python :: 3.10",
104106
"Programming Language :: Python :: Implementation :: CPython",
105107
"Programming Language :: Python :: Implementation :: PyPy",
106108
"Topic :: Database",
@@ -110,7 +112,7 @@ def run_tests(self):
110112
extra_opts = {
111113
"packages": find_packages(exclude=["tests", "tests.*"]),
112114
"tests_require": [
113-
"pytest<5.0",
115+
"pytest",
114116
"pytest-cov",
115117
"coverage",
116118
"blinker",

0 commit comments

Comments
 (0)