Skip to content

Commit

Permalink
v2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
GitRon committed Jun 14, 2024
1 parent 7c7da93 commit 0fa1f29
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 12 deletions.
3 changes: 3 additions & 0 deletions .ambient-package-update/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
),
],
maintainer=PackageMaintainer(name="Ambient Digital", url="https://ambient.digital/", email="[email protected]"),
company="Ambient Innovation: GmbH",
license=LICENSE_GPL,
license_year=2023,
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"]
Expand Down
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

project = "django-pony-express"
copyright = "2024, Ambient Innovation: GmbH" # noqa: A001
author = "Ambient Innovation: GmbH <[email protected]>"
author = "Ambient Digital <[email protected]>"
version = __version__
release = __version__

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 0fa1f29

Please sign in to comment.