Skip to content

Commit

Permalink
Merge pull request #96 from StevenMapes:master
Browse files Browse the repository at this point in the history
Updated to show support for Django 5.1 and to support Django > 5.2
  • Loading branch information
oliwarner authored Sep 13, 2024
2 parents ddbb778 + b6c26ac commit 71d1e97
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ FIDO2/WebAuthn is the big-ticket item for MFA. It allows the browser to interfac
# Python and Django Support
This project targets modern stacks, officially supporting Python 3.8+ and Django 3.2+.

| **Python/Django** | **2.2** |**3.2** | **4.0** | **4.1** | **4.2** | **5.0** |
|-------------------|---------|--------|---------|---------|---------|---------|
| 3.8 | Y | Y | Y | Y | N/A | N/A |
| 3.9 | Y | Y | Y | Y | N/A | N/A |
| 3.10 | N | Y | Y | Y | N/A | Y |
| 3.11 | N | N | N | Y | Y | Y |
| 3.12 | N | N | N | N | Y | Y |
| **Python/Django** | **2.2** |**3.2** | **4.0** | **4.1** | **4.2** | **5.0** | **5.0** |
|-------------------|---------|--------|---------|---------|---------|---------|---------|
| 3.8 | Y | Y | Y | Y | N/A | N/A | N/A |
| 3.9 | Y | Y | Y | Y | N/A | N/A | N/A |
| 3.10 | N | Y | Y | Y | N/A | Y | Y |
| 3.11 | N | N | N | Y | Y | Y | Y |
| 3.12 | N | N | N | N | Y | Y | Y |

* Python 3.11 only works with Django 4.1.3+

Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ classifiers = [
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
Expand All @@ -43,9 +44,9 @@ include = [

[tool.poetry.dependencies]
python = ">=3.7, <4.0"
django = "> 2.2, <= 5.1"
django = "> 2.2, < 5.2"
pyotp = '^2.9'
fido2 = '1.1.2'
fido2 = ">=1.1.2,<1.2"

[tool.poetry.dev-dependencies]
pytest = "^3.0"
Expand Down

0 comments on commit 71d1e97

Please sign in to comment.