Skip to content

Commit 85801a4

Browse files
authored
Merge pull request #474 from hugovk/master
Add support for Python 3.10
2 parents ec38f6c + f6cdfe9 commit 85801a4

File tree

5 files changed

+14
-8
lines changed

5 files changed

+14
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,19 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
include:
14-
- python-version: 2.7
14+
- python-version: "2.7"
1515
tox-env: py27
16-
- python-version: 3.6
16+
- python-version: "3.6"
1717
tox-env: py36
18-
- python-version: 3.7
18+
- python-version: "3.7"
1919
tox-env: py37,docs,readme,black
20-
- python-version: 3.8
20+
- python-version: "3.8"
2121
tox-env: py38
22-
- python-version: 3.9
22+
- python-version: "3.9"
2323
tox-env: py39
24-
- python-version: pypy3
24+
- python-version: "3.10"
25+
tox-env: py310
26+
- python-version: "pypy3"
2527
tox-env: pypy3
2628
steps:
2729
- uses: actions/checkout@v2

AUTHORS.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@ Patches and Suggestions
2424
- David Baumgold <david@davidbaumgold.com>
2525
- Sylvain Marie <sylvain.marie@se.com>
2626
- Craig Anderson <craiga@craiga.id.au>
27+
- Hugo van Kemenade <https://github.com/hugovk>

HISTORY.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
History
22
-------
33

4-
v1.3.2 (TBD)
4+
v1.4.0 (TBD)
55
++++++++++++++++++++++++
66
- ``OAuth2Session`` now correctly uses the ``self.verify`` value if ``verify``
77
is not overridden in ``fetch_token`` and ``refresh_token``. Fixes `#404
88
<https://github.com/requests/requests-oauthlib/issues/404>`_.
99
- ``OAuth2Session`` constructor now uses its ``client.scope`` when a ``client``
1010
is provided and ``scope`` is not overridden. Fixes `#408
1111
<https://github.com/requests/requests-oauthlib/issues/408>`_
12+
- Add support for Python 3.8-3.10
13+
1214

1315
v1.3.1 (21 January 2022)
1416
++++++++++++++++++++++++

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ def readall(path):
6262
"Programming Language :: Python :: 3.7",
6363
"Programming Language :: Python :: 3.8",
6464
"Programming Language :: Python :: 3.9",
65+
"Programming Language :: Python :: 3.10",
6566
"Programming Language :: Python :: Implementation :: CPython",
6667
"Programming Language :: Python :: Implementation :: PyPy",
6768
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist=py27,py34,py35,py36,py37,py38,py39,pypy,pypy3,docs,readme,black
2+
envlist=py27,py34,py35,py36,py37,py38,py39,py310,pypy,pypy3,docs,readme,black
33

44
[testenv]
55
deps=

0 commit comments

Comments
 (0)