Skip to content

Commit 10db9cc

Browse files
committed
chore: drop support for Python 3.8
Fixes #946
1 parent 8fc823b commit 10db9cc

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ on: [push, pull_request]
44

55
jobs:
66
test:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-22.04
88
strategy:
99
matrix:
1010
python-version:
11-
- '3.8'
1211
- '3.9'
1312
- '3.10'
1413
- '3.11'

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies = [
1414
"requests-oauthlib>=0.6.1",
1515
"requests>=2.9.1",
1616
]
17-
requires-python = ">=3.8"
17+
requires-python = ">=3.9"
1818
readme = "README.md"
1919
license = {text = "BSD"}
2020
keywords = ["openid", "oauth", "saml", "social auth"]
@@ -28,7 +28,6 @@ classifiers = [
2828
"Programming Language :: Python :: 3.10",
2929
"Programming Language :: Python :: 3.11",
3030
"Programming Language :: Python :: 3.12",
31-
"Programming Language :: Python :: 3.8",
3231
"Programming Language :: Python :: 3.9",
3332
"Topic :: Internet",
3433
]

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py38,py39,py310,py311,py312
7+
envlist = py39,py310,py311,py312
88

99
[testenv]
1010
passenv = *
1111
deps =
12-
py{38,39,310,311,312}: -e .[dev,all]
12+
py{39,310,311,312}: -e .[dev,all]
1313
commands =
1414
pytest {posargs:-v --cov=social_core}

0 commit comments

Comments
 (0)