django-letsencrypt 6.0.0__tar.gz → 6.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (22) hide show
  1. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1}/CHANGELOG.md +9 -0
  2. {django_letsencrypt-6.0.0/django_letsencrypt.egg-info → django_letsencrypt-6.0.1}/PKG-INFO +7 -8
  3. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1}/README.md +5 -5
  4. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1/django_letsencrypt.egg-info}/PKG-INFO +7 -8
  5. django_letsencrypt-6.0.1/django_letsencrypt.egg-info/requires.txt +1 -0
  6. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1}/letsencrypt/__init__.py +1 -1
  7. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1}/pyproject.toml +2 -3
  8. django_letsencrypt-6.0.0/django_letsencrypt.egg-info/requires.txt +0 -2
  9. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1}/LICENSE +0 -0
  10. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1}/MANIFEST.in +0 -0
  11. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1}/django_letsencrypt.egg-info/SOURCES.txt +0 -0
  12. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1}/django_letsencrypt.egg-info/dependency_links.txt +0 -0
  13. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1}/django_letsencrypt.egg-info/top_level.txt +0 -0
  14. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1}/letsencrypt/admin.py +0 -0
  15. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1}/letsencrypt/apps.py +0 -0
  16. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1}/letsencrypt/migrations/0001_squashed_0004_squash_for_mysql_support.py +0 -0
  17. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1}/letsencrypt/migrations/__init__.py +0 -0
  18. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1}/letsencrypt/models.py +0 -0
  19. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1}/letsencrypt/tests.py +0 -0
  20. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1}/letsencrypt/urls.py +0 -0
  21. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1}/letsencrypt/views.py +0 -0
  22. {django_letsencrypt-6.0.0 → django_letsencrypt-6.0.1}/setup.cfg +0 -0
@@ -1,5 +1,14 @@
1
1
  # django-letsencrypt CHANGELOG
2
2
 
3
+ ## v6.0.1
4
+
5
+ There are no major project changes or code updates.
6
+ This release aligns with recent Django releases and Python releases.
7
+
8
+ - General Updates:
9
+ - Updated Django target versions against newer releases.
10
+ - 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.
11
+
3
12
  ## v6.0.0
4
13
 
5
14
  This release aligns with recent Django releases and Python releases.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: django-letsencrypt
3
- Version: 6.0.0
3
+ Version: 6.0.1
4
4
  Summary: A simple Django app to handle Let's Encrypt ACME challenges.
5
5
  Author-email: Peter Urda <foss@urda.engineering>
6
6
  License-Expression: Apache-2.0
@@ -38,8 +38,7 @@ Classifier: Topic :: Security
38
38
  Requires-Python: <4,>=3.10
39
39
  Description-Content-Type: text/markdown
40
40
  License-File: LICENSE
41
- Requires-Dist: Django>=4.2.27
42
- Requires-Dist: pytz>=2025.2
41
+ Requires-Dist: Django>=4.2.28
43
42
  Dynamic: license-file
44
43
 
45
44
  # Let's Encrypt App for Django
@@ -69,9 +68,9 @@ supported so far:
69
68
  - `3.11` (with Django `5.2`, `4.2`)
70
69
  - `3.10` (with Django `5.2`, `4.2`)
71
70
  - Django Versions Supported:
72
- - `6.0` minimum version `6.0.1`
73
- - `5.2 LTS` minimum version `5.2.10`
74
- - `4.2 LTS` minimum version `4.2.27`
71
+ - `6.0` minimum version `6.0.2`
72
+ - `5.2 LTS` minimum version `5.2.11`
73
+ - `4.2 LTS` minimum version `4.2.28`
75
74
  - Databases Supported:
76
75
  - `mysql`
77
76
  - `postgres`
@@ -135,5 +134,5 @@ application already configured for you to try out.
135
134
  2. Clone the repo to your development machine.
136
135
  3. Configure your `git` hooks with `git config core.hooksPath .githooks` for the project.
137
136
  4. Run `uv sync` to create the virtual environment and install required dependencies.
138
- 5. Run `make test` for a singular test run.
139
- 6. Run `make run-tox` to run the entire `tox` suite.
137
+ 5. Run `make test` for the full test suite.
138
+ 6. Run `make test-tox` to run the entire `tox` suite.
@@ -25,9 +25,9 @@ supported so far:
25
25
  - `3.11` (with Django `5.2`, `4.2`)
26
26
  - `3.10` (with Django `5.2`, `4.2`)
27
27
  - Django Versions Supported:
28
- - `6.0` minimum version `6.0.1`
29
- - `5.2 LTS` minimum version `5.2.10`
30
- - `4.2 LTS` minimum version `4.2.27`
28
+ - `6.0` minimum version `6.0.2`
29
+ - `5.2 LTS` minimum version `5.2.11`
30
+ - `4.2 LTS` minimum version `4.2.28`
31
31
  - Databases Supported:
32
32
  - `mysql`
33
33
  - `postgres`
@@ -91,5 +91,5 @@ application already configured for you to try out.
91
91
  2. Clone the repo to your development machine.
92
92
  3. Configure your `git` hooks with `git config core.hooksPath .githooks` for the project.
93
93
  4. Run `uv sync` to create the virtual environment and install required dependencies.
94
- 5. Run `make test` for a singular test run.
95
- 6. Run `make run-tox` to run the entire `tox` suite.
94
+ 5. Run `make test` for the full test suite.
95
+ 6. Run `make test-tox` to run the entire `tox` suite.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: django-letsencrypt
3
- Version: 6.0.0
3
+ Version: 6.0.1
4
4
  Summary: A simple Django app to handle Let's Encrypt ACME challenges.
5
5
  Author-email: Peter Urda <foss@urda.engineering>
6
6
  License-Expression: Apache-2.0
@@ -38,8 +38,7 @@ Classifier: Topic :: Security
38
38
  Requires-Python: <4,>=3.10
39
39
  Description-Content-Type: text/markdown
40
40
  License-File: LICENSE
41
- Requires-Dist: Django>=4.2.27
42
- Requires-Dist: pytz>=2025.2
41
+ Requires-Dist: Django>=4.2.28
43
42
  Dynamic: license-file
44
43
 
45
44
  # Let's Encrypt App for Django
@@ -69,9 +68,9 @@ supported so far:
69
68
  - `3.11` (with Django `5.2`, `4.2`)
70
69
  - `3.10` (with Django `5.2`, `4.2`)
71
70
  - Django Versions Supported:
72
- - `6.0` minimum version `6.0.1`
73
- - `5.2 LTS` minimum version `5.2.10`
74
- - `4.2 LTS` minimum version `4.2.27`
71
+ - `6.0` minimum version `6.0.2`
72
+ - `5.2 LTS` minimum version `5.2.11`
73
+ - `4.2 LTS` minimum version `4.2.28`
75
74
  - Databases Supported:
76
75
  - `mysql`
77
76
  - `postgres`
@@ -135,5 +134,5 @@ application already configured for you to try out.
135
134
  2. Clone the repo to your development machine.
136
135
  3. Configure your `git` hooks with `git config core.hooksPath .githooks` for the project.
137
136
  4. Run `uv sync` to create the virtual environment and install required dependencies.
138
- 5. Run `make test` for a singular test run.
139
- 6. Run `make run-tox` to run the entire `tox` suite.
137
+ 5. Run `make test` for the full test suite.
138
+ 6. Run `make test-tox` to run the entire `tox` suite.
@@ -14,6 +14,6 @@ See the License for the specific language governing permissions and
14
14
  limitations under the License.
15
15
  """
16
16
 
17
- __version__ = '6.0.0'
17
+ __version__ = '6.0.1'
18
18
 
19
19
  default_app_config = 'letsencrypt.apps.LetsEncryptConfig'
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name='django-letsencrypt'
7
- version='6.0.0'
7
+ version='6.0.1'
8
8
  description="A simple Django app to handle Let's Encrypt ACME challenges."
9
9
  readme = 'README.md'
10
10
  license = 'Apache-2.0'
@@ -44,8 +44,7 @@ classifiers = [
44
44
  'Topic :: Security',
45
45
  ]
46
46
  dependencies = [
47
- 'Django>=4.2.27',
48
- 'pytz>=2025.2',
47
+ 'Django>=4.2.28',
49
48
  ]
50
49
 
51
50
  [project.urls]
@@ -1,2 +0,0 @@
1
- Django>=4.2.27
2
- pytz>=2025.2