Skip to content

Commit

Permalink
v11.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Oct 8, 2024
1 parent 7d525a8 commit 3acd799
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', ]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', ]
django-version: ['42', '50', '51', ]

exclude:
Expand Down
4 changes: 3 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Changelog

**11.5.0** (2024-09-29)
**11.5.1** (2024-10-08)
* Added Python 3.13 support

**11.5.0** (2024-09-29)
* Added system check to ensure that all model relation fields have a related name, either directly set or via the model
meta-option "default_related_name".

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ Example: run all hooks of pre-push stage
### Update documentation
- To build the documentation run: `sphinx-build docs/ docs/_build/html/`.
- To build the documentation, run: `sphinx-build docs/ docs/_build/html/`.
- Open `docs/_build/html/index.html` to see the documentation.
Expand Down
2 changes: 1 addition & 1 deletion ambient_toolbox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Python toolbox of Ambient Digital containing an abundance of useful tools and gadgets."""

__version__ = "11.5.0"
__version__ = "11.5.1"
16 changes: 9 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Utilities",
]
dynamic = ["version", "description"]
Expand All @@ -38,19 +39,19 @@ dependencies = [

[project.optional-dependencies]
dev = [
'typer~=0.9',
'freezegun~=1.3',
'pytest-django~=4.7',
'pytest-mock~=3.12',
'typer~=0.12',
'freezegun~=1.5',
'pytest-django~=4.9',
'pytest-mock~=3.14',
'coverage~=7.6',
'pre-commit~=3.7',
'ruff~=0.4',
'pre-commit~=4.0',
'ruff~=0.6',
'sphinx~=7.1',
'sphinx-rtd-theme~=2.0',
'm2r2==0.3.3.post2',
'mistune<2.0.0',
'flit~=3.9',
'keyring~=25.2',
'keyring~=25.4',
'ambient-package-update',
'gevent~=23.9',
'httpx~=0.27',
Expand Down Expand Up @@ -218,6 +219,7 @@ python =
3.10: py310
3.11: py311
3.12: py312
3.13: py313
"""

[tool.pytest.ini_options]
Expand Down

0 comments on commit 3acd799

Please sign in to comment.