Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/testing-42.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- '3.11.14'
- '3.10.19'
django-version:
- '4.2.27'
- '4.2.28'
database-target:
- 'mysql'
- 'postgres'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing-52.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- '3.11.14'
- '3.10.19'
django-version:
- '5.2.10'
- '5.2.11'
database-target:
- 'mysql'
- 'postgres'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing-60.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- '3.13.11'
- '3.12.12'
django-version:
- '6.0.1'
- '6.0.2'
database-target:
- 'mysql'
- 'postgres'
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# django-letsencrypt CHANGELOG

## v6.0.1

There are no major project changes or code updates.
This release aligns with recent Django releases and Python releases.

- General Updates:
- Updated Django target versions against newer releases.
- Dropped `pytz` from the project. Projects using Python 3.9 or later are best served by using the timezone functionality now included in core Python and packages that work with it such as tzdata.

## v6.0.0

This release aligns with recent Django releases and Python releases.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ clean: # Clean up build, test, and other project artifacts

.PHONY: version-check
version-check: # Verify the project version string is correct across the project
@uv run ./scripts/version_manager.py check
@uv run ./scripts/version_manager.py $(or $(ARGS),check)

.PHONY: version-check-django
version-check-django: # Verify the project's Django version
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ supported so far:
- `3.11` (with Django `5.2`, `4.2`)
- `3.10` (with Django `5.2`, `4.2`)
- Django Versions Supported:
- `6.0` minimum version `6.0.1`
- `5.2 LTS` minimum version `5.2.10`
- `4.2 LTS` minimum version `4.2.27`
- `6.0` minimum version `6.0.2`
- `5.2 LTS` minimum version `5.2.11`
- `4.2 LTS` minimum version `4.2.28`
- Databases Supported:
- `mysql`
- `postgres`
Expand Down
2 changes: 1 addition & 1 deletion letsencrypt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
limitations under the License.
"""

__version__ = '6.0.0'
__version__ = '6.0.1'

default_app_config = 'letsencrypt.apps.LetsEncryptConfig'
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name='django-letsencrypt'
version='6.0.0'
version='6.0.1'
description="A simple Django app to handle Let's Encrypt ACME challenges."
readme = 'README.md'
license = 'Apache-2.0'
Expand Down Expand Up @@ -44,8 +44,7 @@ classifiers = [
'Topic :: Security',
]
dependencies = [
'Django>=4.2.27',
'pytz>=2025.2',
'Django>=4.2.28',
]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion scripts/testpypi_integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ pip install \

# Show what was installed
echo "${PREFIX} Installed packages:"
pip list | grep -E "(django|letsencrypt|pytz)"
pip list | grep -E "(django|letsencrypt)"

# Navigate to the example project
cd "${WORK_DIR}/example_project"
Expand Down
7 changes: 3 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,9 @@ commands =
make version-check-django
make test-tox-entry
deps =
django42: Django>=4.2.27,<5.0
django52: Django>=5.2.10,<6.0
django60: Django>=6.0.1,<7.0
pytz
django42: Django>=4.2.28,<5.0
django52: Django>=5.2.11,<6.0
django60: Django>=6.0.2,<7.0
coverage
allowlist_externals =
make
Expand Down
17 changes: 2 additions & 15 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.