Skip to content

Commit b2401fc

Browse files
authored
Sem-Ver: api-break Drop support for python 3.5 as part of upgrading cryptography from using a version >= 3.2.1 < 3.3.0 to use a version >= 3.3.1 and < 3.4.0
Signed-off-by: David Black <[email protected]>
1 parent 5c81300 commit b2401fc

File tree

5 files changed

+3
-5
lines changed

5 files changed

+3
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [3.5, 3.6, 3.7, 3.8]
11+
python-version: [3.6, 3.7, 3.8]
1212

1313
steps:
1414
- uses: actions/checkout@v2

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
sudo: false
22
language: python
33
python:
4-
- "3.5"
54
- "3.6"
65
- "3.7"
76
- "3.8"

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ To verify a JWT
128128
verifier = atlassian_jwt_auth.JWTAuthVerifier(public_key_retriever)
129129
verified_claims = verifier.verify_jwt(a_jwt, 'audience')
130130
131-
For Python versions starting from ``Python 3.5`` ``atlassian_jwt_auth.contrib.aiohttp``
131+
For Python versions starting from ``Python 3.5``, note this library no longer supports python 3.5, ``atlassian_jwt_auth.contrib.aiohttp``
132132
provides drop-in replacements for the components that
133133
perform HTTP requests, so that they use ``aiohttp`` instead of ``requests``:
134134

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cryptography>=3.2.1,<3.3.0
1+
cryptography>=3.3.1,<3.4.0
22
PyJWT>=1.5.2,<2.0.0
33
requests>=2.8.1,<3.0.0
44
CacheControl==0.12.6

setup.cfg

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ classifier =
1111
Operating System :: OS Independent
1212
Programming Language :: Python
1313
Programming Language :: Python :: 3
14-
Programming Language :: Python :: 3.5
1514
Programming Language :: Python :: 3.6
1615
Programming Language :: Python :: 3.7
1716
Programming Language :: Python :: 3.8

0 commit comments

Comments
 (0)