Skip to content

Commit 2ac5d2a

Browse files
committed
CI: Extend test matrix by Python 3.9 and 3.10
1 parent 6124eb1 commit 2ac5d2a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
os: [ubuntu-latest]
19-
python-version: [3.6, 3.7, 3.8, pypy3]
19+
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10', 'pypy3']
2020
steps:
2121
- uses: actions/checkout@v2
2222
- name: Set up Python

setup.cfg

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ classifiers =
2222
Programming Language :: Python :: 3.6
2323
Programming Language :: Python :: 3.7
2424
Programming Language :: Python :: 3.8
25+
Programming Language :: Python :: 3.9
26+
Programming Language :: Python :: 3.10
2527
Topic :: Internet
2628
Topic :: Software Development
2729
Topic :: Software Development :: Libraries
@@ -38,7 +40,7 @@ setup_requires =
3840
setuptools_scm>=4.0
3941

4042
install_requires =
41-
requests>=2.23.0
43+
requests>=2.23.0,<3
4244

4345
[options.extras_require]
4446
test =

0 commit comments

Comments
 (0)