diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8bb7fb9aa..af51cff60 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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' diff --git a/pyproject.toml b/pyproject.toml index 2d237e71c..364ee6282 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"] @@ -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", ] diff --git a/tox.ini b/tox.ini index 40bfa6e0e..ce0f60ecf 100644 --- a/tox.ini +++ b/tox.ini @@ -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}