From 07111f24a6575bf25c1d699b46e27295c7934277 Mon Sep 17 00:00:00 2001 From: Ronny V Date: Fri, 14 Jun 2024 16:17:13 +0200 Subject: [PATCH] v2.1.2 (#15) --- .ambient-package-update/metadata.py | 3 +++ .github/workflows/ci.yml | 6 ------ .pre-commit-config.yaml | 6 +++--- CHANGES.md | 3 +++ README.md | 4 +++- docs/conf.py | 2 +- pyproject.toml | 2 +- 7 files changed, 14 insertions(+), 12 deletions(-) diff --git a/.ambient-package-update/metadata.py b/.ambient-package-update/metadata.py index acdd1f8..b81687e 100644 --- a/.ambient-package-update/metadata.py +++ b/.ambient-package-update/metadata.py @@ -5,18 +5,21 @@ SUPPORTED_DJANGO_VERSIONS, SUPPORTED_PYTHON_VERSIONS, ) +from ambient_package_update.metadata.maintainer import PackageMaintainer from ambient_package_update.metadata.package import PackageMetadata from ambient_package_update.metadata.readme import ReadmeContent from ambient_package_update.metadata.ruff_ignored_inspection import RuffIgnoredInspection METADATA = PackageMetadata( package_name="django_pony_express", + module_name="django_pony_express", authors=[ PackageAuthor( name="Ambient Digital", email="hello@ambient.digital", ), ], + maintainer=PackageMaintainer(name="Ambient Digital", url="https://ambient.digital/", email="hello@ambient.digital"), company="Ambient Innovation: GmbH", license=LICENSE_GPL, license_year=2023, diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6fd8f4a..e417016 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,12 +31,6 @@ jobs: django-version: ['42', '50', ] exclude: - - python-version: '3.12' - django-version: 32 - - python-version: '3.11' - django-version: 32 - - python-version: '3.10' - django-version: 32 - python-version: '3.8' django-version: 50 - python-version: '3.9' diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index cfa63cf..947cd87 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,7 +3,7 @@ repos: - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.3.5 + rev: v0.4.8 hooks: # Run the Ruff linter. - id: ruff @@ -12,14 +12,14 @@ repos: - id: ruff-format - repo: https://github.com/asottile/pyupgrade - rev: v3.15.2 + rev: v3.16.0 hooks: - id: pyupgrade args: [ --py38-plus ] stages: [ push ] - repo: https://github.com/adamchainz/django-upgrade - rev: 1.16.0 + rev: 1.18.0 hooks: - id: django-upgrade args: [--target-version, "4.2"] diff --git a/CHANGES.md b/CHANGES.md index 0977362..cfcbd05 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,8 @@ # Changelog +* *2.1.2* (2024-06-14) + * Updates via ambient-package updater + * *2.1.1* (2024-05-31) * Changed log-level to "info" for successful dispatching * Improved configuration docs diff --git a/README.md b/README.md index c73b70a..096eff5 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ emails in Django. * [PyPI](https://pypi.org/project/django-pony-express/) * [GitHub](https://github.com/ambient-innovation/django-pony-express) * [Full documentation](https://django-pony-express.readthedocs.io/en/latest/index.html) -* Creator & Maintainer: [Ambient Digital](https://ambient.digital) +* Creator & Maintainer: [Ambient Digital](https://ambient.digital/) ## Features @@ -121,6 +121,7 @@ Example: run all hooks of pre-push stage - To build the documentation run: `sphinx-build docs/ docs/_build/html/`. - Open `docs/_build/html/index.html` to see the documentation. + ### Translation files If you have added custom text, make sure to wrap it in `_()` where `_` is @@ -138,6 +139,7 @@ How to compile translation files: * `python manage.py compilemessages` * Have a look at the new/changed files within `django_pony_express/locale` + ### Publish to ReadTheDocs.io - Fetch the latest changes in GitHub mirror and push them diff --git a/docs/conf.py b/docs/conf.py index 16ad88e..dbc8756 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -37,7 +37,7 @@ project = "django-pony-express" copyright = "2024, Ambient Innovation: GmbH" # noqa: A001 -author = "Ambient Innovation: GmbH " +author = "Ambient Digital " version = __version__ release = __version__ diff --git a/pyproject.toml b/pyproject.toml index 8bdf3e9..f31cf6c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,7 +49,7 @@ dev = [ 'm2r2==0.3.3.post2', 'mistune<2.0.0', 'flit~=3.9', - 'ambient-package-update~=24.4.4', + 'ambient-package-update~=24.6.1', ] [tool.flit.module]