Skip to content

Commit

Permalink
drop support for pydantic~=2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasertl committed Jul 29, 2024
1 parent 4c299f0 commit ac38f1c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
django-version: [ "4.2.0", "5.0.0", ]
cryptography-version: [ "42.0" ]
pydantic-version: [ "2.6.0", "2.7.0" , "2.8.0"]
pydantic-version: [ "2.7.0" , "2.8.0"]
exclude:
- python-version: 3.9
django-version: 5.0.0
Expand Down
2 changes: 1 addition & 1 deletion docs/source/changelog/TBR_2.0.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Dependencies
************

* Add support for Pydantic 2.8.
* **BACKWARDS INCOMPATIBLE:** Dropped support for ``pydantic~=2.5.0``, ``acme~=2.9.0`` and ``Celery~=5.3.0``.
* **BACKWARDS INCOMPATIBLE:** Dropped support for ``pydantic<2.7.0``, ``acme~=2.9.0`` and ``Celery~=5.3.0``.
* Drop support for Alpine 3.17.

**********
Expand Down
2 changes: 1 addition & 1 deletion docs/source/quickstart/as_app.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ tested with what release (changes to previous versions in **bold**):
========= ============== ================== =============== ============= ================ =============
django-ca Python Django cryptography Celery acme pydantic
========= ============== ================== =============== ============= ================ =============
2.0 3.9 - 3.12 4.2 - 5.0 42 **5.4** **2.10** - 2.11 **2.6** - 2.7
2.0 3.9 - 3.12 4.2 - 5.0 42 **5.4** **2.10** - 2.11 **2.7 - 2.8**
1.29 **3.9** - 3.12 4.2 - 5.0 **42** 5.3 - **5.4** **2.9 - 2.11** 2.5 - **2.7**
1.28 3.8 - 3.12 **4.2 - 5.0** 41 - **42** 5.3 **2.7 - 2.9** 2.5 - 2.6
1.27 3.8 - **3.12** 3.2, **4.2** **41** **5.3** 2.6 - **2.7**
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ python = ["3.9", "3.10", "3.11", "3.12"]
django = ["4.2", "5.0"]
cryptography = ["42"]
acme = ["2.10", "2.11"]
pydantic = ["2.6", "2.7", "2.8"]
pydantic = ["2.7", "2.8"]

# https://alpinelinux.org/releases/
alpine = [
Expand Down
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist = pylint,docs,lint,mypy,demo,dist-test
py{310,311,312}-dj{5.0}-cg{42}-acme{2.10,2.11}-pydantic{2.6,2.7,2.8}
py{39,310,311,312}-dj{4.2}-cg{42}-acme{2.10,2.11}-pydantic{2.6,2.7,2.8}
py{310,311,312}-dj{5.0}-cg{42}-acme{2.10,2.11}-pydantic{2.7,2.8}
py{39,310,311,312}-dj{4.2}-cg{42}-acme{2.10,2.11}-pydantic{2.7,2.8}
faketime

[testenv]
Expand All @@ -14,7 +14,6 @@ deps =
cg42: cryptography~=42.0
acme2.10: acme~=2.10.0
acme2.11: acme~=2.11.0
pydantic2.6: pydantic~=2.6.0
pydantic2.7: pydantic~=2.7.0
pydantic2.8: pydantic~=2.8.0
setenv =
Expand Down

0 comments on commit ac38f1c

Please sign in to comment.