diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2025-01-28 08:02:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-28 08:02:13 +0100 |
| commit | d9af197801376fae178761cac12d57178a738cf4 (patch) | |
| tree | 90f7ced27f7d847da4e29337e131696492047a4d /pyproject.toml | |
| parent | 8eca4077f60fa0705ecfd9437c9ceaeef7a3808b (diff) | |
Refs #36005 -- Bumped minimum supported versions of 3rd-party packages.
This bumps minimum supported versions of 3rd-party packages to the first
releases to support Python 3.12.
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyproject.toml b/pyproject.toml index 540e64d951..f10d15d20d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ dynamic = ["version"] requires-python = ">= 3.12" dependencies = [ "asgiref>=3.8.1", - "sqlparse>=0.3.1", + "sqlparse>=0.5.0", "tzdata; sys_platform == 'win32'", ] authors = [ @@ -37,8 +37,8 @@ classifiers = [ ] [project.optional-dependencies] -argon2 = ["argon2-cffi>=19.1.0"] -bcrypt = ["bcrypt"] +argon2 = ["argon2-cffi>=23.1.0"] +bcrypt = ["bcrypt>=4.1.1"] [project.scripts] django-admin = "django.core.management:execute_from_command_line" |
