Skip to content

Commit

Permalink
Restore Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
hugorodgerbrown committed Nov 13, 2023
1 parent 322c226 commit 32e3b1d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
# build LTS version, next version, HEAD
django: ["41", "42", "50", "main"]
django: ["32", "42", "50", "main"]
exclude:
- python: "3.8"
django: "50"
Expand All @@ -80,8 +80,10 @@ jobs:
django: "main"
- python: "3.10"
django: "main"
- python: "3.11"
django: "32"
- python: "3.12"
django: "41"
django: "32"
- python: "3.12"
django: "42"

Expand Down
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,25 @@ documentation = "https://github.com/yunojuno/django-simple-saml"
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
packages = [{ include = "simple_saml" }]

[tool.poetry.dependencies]
python = "^3.8"
django = "^4.1 | ^5.0"
django = "^3.2 | ^4.0 | ^5.0"
social-auth-app-django = "*"
python3-saml = "*"
dj_database_url = { version = "*", optional=true}
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ envlist =
fmt, lint, mypy,
django-checks,
; https://docs.djangoproject.com/en/5.0/releases/
django32-py{38,39,310}
django40-py{38,39,310}
django41-py{38,39,310,311}
django42-py{38,39,310,311}
django50-py{310,311,312}
Expand Down

0 comments on commit 32e3b1d

Please sign in to comment.