Skip to content

Commit

Permalink
increase some minimum required versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasertl committed May 15, 2024
1 parent 2c5f65c commit d906d29
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 2 additions & 0 deletions docs/source/changelog/TBR_1.29.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ Dependencies
* Add support for ``acme~=2.10.0`` and ``pydantic~=2.7.0``.
* **BACKWARDS INCOMPATIBLE:** Dropped support for Python 3.8.
* **BACKWARDS INCOMPATIBLE:** Dropped support for ``cryptography~=41.0``, ``acme~=2.7.0`` and ``acme~=2.8.0``.
* Increased minimum required versions to ``dnspython>=2.5``, ``hiredis>=2.1.0``, ``idna>=3.4``,
``psycopg>=3.1`` and``redis>=4.6``.

**********
Python API
Expand Down
11 changes: 5 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,23 +115,22 @@ dependencies = [
"asn1crypto>=1.5",
"cryptography>=42",
"django-object-actions>=4.0.0",
"dnspython>=2.3",
"idna>=3.2",
"dnspython>=2.5",
"idna>=3.4",
"josepy>=1.13.0",
"packaging",
"pydantic>=2.5",
"requests",
"typing-extensions>=4; python_version < '3.9'",
]

[project.optional-dependencies]
api = ["django-ninja>=1.1"]
celery = ["celery>=5.3"]
mysql = ["mysqlclient"]
postgres = ["psycopg[c,pool]>=3"]
postgres = ["psycopg[c,pool]>=3.1"]
# remove psycopg3 in django-ca==2.0, also update docs/source/include/pip-extras.rst
psycopg3 = ["psycopg[c,pool]>=3"]
redis = ["hiredis>=2.0.0", "redis>=4.3"]
psycopg3 = ["psycopg[c,pool]>=3.1"]
redis = ["hiredis>=2.1.0", "redis>=4.6"]
yaml = ["PyYAML>=6.0.0"]

[project.urls]
Expand Down

0 comments on commit d906d29

Please sign in to comment.