Skip to content

Commit

Permalink
chore: drop support for Python 3.8
Browse files Browse the repository at this point in the history
Fixes #946
  • Loading branch information
nijel committed Jan 6, 2025
1 parent 8fc823b commit 10db9cc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@ on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
python-version:
- '3.8'
- '3.9'
- '3.10'
- '3.11'
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies = [
"requests-oauthlib>=0.6.1",
"requests>=2.9.1",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
readme = "README.md"
license = {text = "BSD"}
keywords = ["openid", "oauth", "saml", "social auth"]
Expand All @@ -28,7 +28,6 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet",
]
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
# and then run "tox" from this directory.

[tox]
envlist = py38,py39,py310,py311,py312
envlist = py39,py310,py311,py312

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

0 comments on commit 10db9cc

Please sign in to comment.