django-letsencrypt 4.1.0__tar.gz → 5.1.0__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-4.1.0 → django_letsencrypt-5.1.0}/CHANGELOG.md +15 -0
  2. {django-letsencrypt-4.1.0/django_letsencrypt.egg-info → django_letsencrypt-5.1.0}/PKG-INFO +31 -17
  3. {django-letsencrypt-4.1.0 → django_letsencrypt-5.1.0}/README.md +11 -8
  4. {django-letsencrypt-4.1.0 → django_letsencrypt-5.1.0/django_letsencrypt.egg-info}/PKG-INFO +31 -17
  5. django_letsencrypt-5.1.0/django_letsencrypt.egg-info/requires.txt +2 -0
  6. {django-letsencrypt-4.1.0 → django_letsencrypt-5.1.0}/letsencrypt/__init__.py +2 -2
  7. {django-letsencrypt-4.1.0 → django_letsencrypt-5.1.0}/setup.py +9 -8
  8. django-letsencrypt-4.1.0/django_letsencrypt.egg-info/requires.txt +0 -2
  9. {django-letsencrypt-4.1.0 → django_letsencrypt-5.1.0}/LICENSE +0 -0
  10. {django-letsencrypt-4.1.0 → django_letsencrypt-5.1.0}/MANIFEST.in +0 -0
  11. {django-letsencrypt-4.1.0 → django_letsencrypt-5.1.0}/django_letsencrypt.egg-info/SOURCES.txt +0 -0
  12. {django-letsencrypt-4.1.0 → django_letsencrypt-5.1.0}/django_letsencrypt.egg-info/dependency_links.txt +0 -0
  13. {django-letsencrypt-4.1.0 → django_letsencrypt-5.1.0}/django_letsencrypt.egg-info/top_level.txt +0 -0
  14. {django-letsencrypt-4.1.0 → django_letsencrypt-5.1.0}/letsencrypt/admin.py +0 -0
  15. {django-letsencrypt-4.1.0 → django_letsencrypt-5.1.0}/letsencrypt/apps.py +0 -0
  16. {django-letsencrypt-4.1.0 → django_letsencrypt-5.1.0}/letsencrypt/migrations/0001_squashed_0004_squash_for_mysql_support.py +0 -0
  17. {django-letsencrypt-4.1.0 → django_letsencrypt-5.1.0}/letsencrypt/migrations/__init__.py +0 -0
  18. {django-letsencrypt-4.1.0 → django_letsencrypt-5.1.0}/letsencrypt/models.py +0 -0
  19. {django-letsencrypt-4.1.0 → django_letsencrypt-5.1.0}/letsencrypt/tests.py +0 -0
  20. {django-letsencrypt-4.1.0 → django_letsencrypt-5.1.0}/letsencrypt/urls.py +0 -0
  21. {django-letsencrypt-4.1.0 → django_letsencrypt-5.1.0}/letsencrypt/views.py +0 -0
  22. {django-letsencrypt-4.1.0 → django_letsencrypt-5.1.0}/setup.cfg +0 -0
@@ -1,5 +1,20 @@
1
1
  # django-letsencrypt CHANGELOG
2
2
 
3
+ ## v5.1.0
4
+
5
+ There are no major project changes or code updates. This release aligns with
6
+ recent Django releases and Python releases.
7
+
8
+ - Internal Updates:
9
+ - Brought `tox` up-to-date with the current supported Django+Python versions.
10
+ - Brought GitHub actions up-to-date with the current supported Django+Python versions.
11
+ - This project will no longer use the "sign" feature of PyPi.
12
+ - See also: https://blog.pypi.org/posts/2023-05-23-removing-pgp/
13
+ - Dependency Updates:
14
+ - `pytz` version `2025.2` or greater now required.
15
+ - General Updates:
16
+ - Updated `README` with supported version information.
17
+
3
18
  ## v4.1.0
4
19
 
5
20
  There are no major project changes or code updates. This release aligns with
@@ -1,35 +1,48 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: django-letsencrypt
3
- Version: 4.1.0
3
+ Version: 5.1.0
4
4
  Summary: A simple Django app to handle Let's Encrypt ACME challenges.
5
5
  Home-page: https://github.com/urda/django-letsencrypt
6
6
  Author: Peter Urda
7
7
  Author-email: foss@urda.engineering
8
8
  License: Apache License, Version 2.0
9
- Platform: UNKNOWN
10
9
  Classifier: Development Status :: 5 - Production/Stable
11
10
  Classifier: Environment :: Web Environment
12
11
  Classifier: Framework :: Django
13
- Classifier: Framework :: Django :: 2.2
14
- Classifier: Framework :: Django :: 3.2
15
12
  Classifier: Framework :: Django :: 4.0
13
+ Classifier: Framework :: Django :: 5.0
14
+ Classifier: Framework :: Django :: 5.1
16
15
  Classifier: Intended Audience :: Developers
17
16
  Classifier: License :: OSI Approved :: Apache Software License
18
17
  Classifier: Natural Language :: English
19
18
  Classifier: Operating System :: OS Independent
20
19
  Classifier: Programming Language :: Python
21
20
  Classifier: Programming Language :: Python :: 3
22
- Classifier: Programming Language :: Python :: 3.7
23
21
  Classifier: Programming Language :: Python :: 3.8
24
22
  Classifier: Programming Language :: Python :: 3.9
25
23
  Classifier: Programming Language :: Python :: 3.10
24
+ Classifier: Programming Language :: Python :: 3.11
25
+ Classifier: Programming Language :: Python :: 3.12
26
26
  Classifier: Programming Language :: Python :: 3 :: Only
27
27
  Classifier: Topic :: Internet
28
28
  Classifier: Topic :: Internet :: WWW/HTTP
29
29
  Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
30
- Requires-Python: >=3.7, <4
30
+ Requires-Python: >=3.8, <4
31
31
  Description-Content-Type: text/markdown
32
32
  License-File: LICENSE
33
+ Requires-Dist: Django>=4.2.20
34
+ Requires-Dist: pytz>=2025.2
35
+ Dynamic: author
36
+ Dynamic: author-email
37
+ Dynamic: classifier
38
+ Dynamic: description
39
+ Dynamic: description-content-type
40
+ Dynamic: home-page
41
+ Dynamic: license
42
+ Dynamic: license-file
43
+ Dynamic: requires-dist
44
+ Dynamic: requires-python
45
+ Dynamic: summary
33
46
 
34
47
  # Let's Encrypt App for Django
35
48
 
@@ -52,13 +65,16 @@ And of course all wrapped up and published to
52
65
  supported so far:
53
66
 
54
67
  - Python Versions Supported:
55
- - `3.10` (Django `4.0` and `3.2` only)
56
- - `3.8`
57
- - `3.7` (Django `3.2` and `2.2` only)
68
+ - `3.13` (with Django `5.1`)
69
+ - `3.12` (with Django `5.1`, `5.0`, `4.2`)
70
+ - `3.11` (with Django `5.1`, `5.0`, `4.2`)
71
+ - `3.10` (with Django `5.1`, `5.0`, `4.2`)
72
+ - `3.9` (with Django `4.2`)
73
+ - `3.8` (with Django `4.2`)
58
74
  - Django Versions Supported:
59
- - `4.0` minimum version `4.0`
60
- - `3.2` minimum version `3.2.10`
61
- - `2.2` minimum version `2.2.25`
75
+ - `5.1` minimum version `5.1.7`
76
+ - `5.0` minimum version `5.0.13`
77
+ - `4.2 LTS` minimum version `4.2.20`
62
78
  - Databases Supported:
63
79
  - `mysql`
64
80
  - `postgres`
@@ -67,9 +83,9 @@ supported so far:
67
83
  # Recent Build Status Badges
68
84
 
69
85
  - [![Linting - Master](https://github.com/urda/django-letsencrypt/actions/workflows/linting.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/linting.yaml)
70
- - [![Testing Django 2.2 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-22.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-22.yaml)
71
- - [![Testing Django 3.2 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-32.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-32.yaml)
72
86
  - [![Testing Django 4.0 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-40.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-40.yaml)
87
+ - [![Testing Django 5.0 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-50.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-50.yaml)
88
+ - [![Testing Django 5.1 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-51.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-51.yaml)
73
89
  - [![Codecov - Master](https://codecov.io/gh/urda/django-letsencrypt/branch/master/graph/badge.svg?token=yn64lBfwZr)](https://codecov.io/gh/urda/django-letsencrypt)
74
90
 
75
91
  # Installation & Configuration
@@ -115,5 +131,3 @@ take a moment to read the `README.md` file within the
115
131
  [`example_project`](https://github.com/urda/django-letsencrypt/tree/master/example_project)
116
132
  directory, and follow the directions. That will spin up a small sample django
117
133
  application already configured for you to try out.
118
-
119
-
@@ -19,13 +19,16 @@ And of course all wrapped up and published to
19
19
  supported so far:
20
20
 
21
21
  - Python Versions Supported:
22
- - `3.10` (Django `4.0` and `3.2` only)
23
- - `3.8`
24
- - `3.7` (Django `3.2` and `2.2` only)
22
+ - `3.13` (with Django `5.1`)
23
+ - `3.12` (with Django `5.1`, `5.0`, `4.2`)
24
+ - `3.11` (with Django `5.1`, `5.0`, `4.2`)
25
+ - `3.10` (with Django `5.1`, `5.0`, `4.2`)
26
+ - `3.9` (with Django `4.2`)
27
+ - `3.8` (with Django `4.2`)
25
28
  - Django Versions Supported:
26
- - `4.0` minimum version `4.0`
27
- - `3.2` minimum version `3.2.10`
28
- - `2.2` minimum version `2.2.25`
29
+ - `5.1` minimum version `5.1.7`
30
+ - `5.0` minimum version `5.0.13`
31
+ - `4.2 LTS` minimum version `4.2.20`
29
32
  - Databases Supported:
30
33
  - `mysql`
31
34
  - `postgres`
@@ -34,9 +37,9 @@ supported so far:
34
37
  # Recent Build Status Badges
35
38
 
36
39
  - [![Linting - Master](https://github.com/urda/django-letsencrypt/actions/workflows/linting.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/linting.yaml)
37
- - [![Testing Django 2.2 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-22.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-22.yaml)
38
- - [![Testing Django 3.2 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-32.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-32.yaml)
39
40
  - [![Testing Django 4.0 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-40.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-40.yaml)
41
+ - [![Testing Django 5.0 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-50.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-50.yaml)
42
+ - [![Testing Django 5.1 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-51.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-51.yaml)
40
43
  - [![Codecov - Master](https://codecov.io/gh/urda/django-letsencrypt/branch/master/graph/badge.svg?token=yn64lBfwZr)](https://codecov.io/gh/urda/django-letsencrypt)
41
44
 
42
45
  # Installation & Configuration
@@ -1,35 +1,48 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: django-letsencrypt
3
- Version: 4.1.0
3
+ Version: 5.1.0
4
4
  Summary: A simple Django app to handle Let's Encrypt ACME challenges.
5
5
  Home-page: https://github.com/urda/django-letsencrypt
6
6
  Author: Peter Urda
7
7
  Author-email: foss@urda.engineering
8
8
  License: Apache License, Version 2.0
9
- Platform: UNKNOWN
10
9
  Classifier: Development Status :: 5 - Production/Stable
11
10
  Classifier: Environment :: Web Environment
12
11
  Classifier: Framework :: Django
13
- Classifier: Framework :: Django :: 2.2
14
- Classifier: Framework :: Django :: 3.2
15
12
  Classifier: Framework :: Django :: 4.0
13
+ Classifier: Framework :: Django :: 5.0
14
+ Classifier: Framework :: Django :: 5.1
16
15
  Classifier: Intended Audience :: Developers
17
16
  Classifier: License :: OSI Approved :: Apache Software License
18
17
  Classifier: Natural Language :: English
19
18
  Classifier: Operating System :: OS Independent
20
19
  Classifier: Programming Language :: Python
21
20
  Classifier: Programming Language :: Python :: 3
22
- Classifier: Programming Language :: Python :: 3.7
23
21
  Classifier: Programming Language :: Python :: 3.8
24
22
  Classifier: Programming Language :: Python :: 3.9
25
23
  Classifier: Programming Language :: Python :: 3.10
24
+ Classifier: Programming Language :: Python :: 3.11
25
+ Classifier: Programming Language :: Python :: 3.12
26
26
  Classifier: Programming Language :: Python :: 3 :: Only
27
27
  Classifier: Topic :: Internet
28
28
  Classifier: Topic :: Internet :: WWW/HTTP
29
29
  Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
30
- Requires-Python: >=3.7, <4
30
+ Requires-Python: >=3.8, <4
31
31
  Description-Content-Type: text/markdown
32
32
  License-File: LICENSE
33
+ Requires-Dist: Django>=4.2.20
34
+ Requires-Dist: pytz>=2025.2
35
+ Dynamic: author
36
+ Dynamic: author-email
37
+ Dynamic: classifier
38
+ Dynamic: description
39
+ Dynamic: description-content-type
40
+ Dynamic: home-page
41
+ Dynamic: license
42
+ Dynamic: license-file
43
+ Dynamic: requires-dist
44
+ Dynamic: requires-python
45
+ Dynamic: summary
33
46
 
34
47
  # Let's Encrypt App for Django
35
48
 
@@ -52,13 +65,16 @@ And of course all wrapped up and published to
52
65
  supported so far:
53
66
 
54
67
  - Python Versions Supported:
55
- - `3.10` (Django `4.0` and `3.2` only)
56
- - `3.8`
57
- - `3.7` (Django `3.2` and `2.2` only)
68
+ - `3.13` (with Django `5.1`)
69
+ - `3.12` (with Django `5.1`, `5.0`, `4.2`)
70
+ - `3.11` (with Django `5.1`, `5.0`, `4.2`)
71
+ - `3.10` (with Django `5.1`, `5.0`, `4.2`)
72
+ - `3.9` (with Django `4.2`)
73
+ - `3.8` (with Django `4.2`)
58
74
  - Django Versions Supported:
59
- - `4.0` minimum version `4.0`
60
- - `3.2` minimum version `3.2.10`
61
- - `2.2` minimum version `2.2.25`
75
+ - `5.1` minimum version `5.1.7`
76
+ - `5.0` minimum version `5.0.13`
77
+ - `4.2 LTS` minimum version `4.2.20`
62
78
  - Databases Supported:
63
79
  - `mysql`
64
80
  - `postgres`
@@ -67,9 +83,9 @@ supported so far:
67
83
  # Recent Build Status Badges
68
84
 
69
85
  - [![Linting - Master](https://github.com/urda/django-letsencrypt/actions/workflows/linting.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/linting.yaml)
70
- - [![Testing Django 2.2 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-22.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-22.yaml)
71
- - [![Testing Django 3.2 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-32.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-32.yaml)
72
86
  - [![Testing Django 4.0 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-40.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-40.yaml)
87
+ - [![Testing Django 5.0 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-50.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-50.yaml)
88
+ - [![Testing Django 5.1 - Master](https://github.com/urda/django-letsencrypt/actions/workflows/testing-51.yaml/badge.svg?branch=master)](https://github.com/urda/django-letsencrypt/actions/workflows/testing-51.yaml)
73
89
  - [![Codecov - Master](https://codecov.io/gh/urda/django-letsencrypt/branch/master/graph/badge.svg?token=yn64lBfwZr)](https://codecov.io/gh/urda/django-letsencrypt)
74
90
 
75
91
  # Installation & Configuration
@@ -115,5 +131,3 @@ take a moment to read the `README.md` file within the
115
131
  [`example_project`](https://github.com/urda/django-letsencrypt/tree/master/example_project)
116
132
  directory, and follow the directions. That will spin up a small sample django
117
133
  application already configured for you to try out.
118
-
119
-
@@ -0,0 +1,2 @@
1
+ Django>=4.2.20
2
+ pytz>=2025.2
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright 2016-2021 Peter Urda
2
+ Copyright 2016-2025 Peter Urda
3
3
 
4
4
  Licensed under the Apache License, Version 2.0 (the "License");
5
5
  you may not use this file except in compliance with the License.
@@ -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__ = '4.1.0'
17
+ __version__ = '5.1.0'
18
18
 
19
19
  default_app_config = 'letsencrypt.apps.LetsEncryptConfig'
@@ -1,5 +1,5 @@
1
1
  """
2
- Copyright 2016-2021 Peter Urda
2
+ Copyright 2016-2025 Peter Urda
3
3
 
4
4
  Licensed under the Apache License, Version 2.0 (the "License");
5
5
  you may not use this file except in compliance with the License.
@@ -24,8 +24,8 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
24
24
 
25
25
  setup(
26
26
  name='django-letsencrypt',
27
- version='4.1.0',
28
- python_requires=">=3.7, <4",
27
+ version='5.1.0',
28
+ python_requires=">=3.8, <4",
29
29
  packages=['letsencrypt'],
30
30
  include_package_data=True,
31
31
  license='Apache License, Version 2.0',
@@ -36,26 +36,27 @@ setup(
36
36
  author='Peter Urda',
37
37
  author_email='foss@urda.engineering',
38
38
  install_requires=[
39
- "Django>=2.2.25",
40
- "pytz>=2021.3",
39
+ "Django>=4.2.20",
40
+ "pytz>=2025.2",
41
41
  ],
42
42
  classifiers=[
43
43
  'Development Status :: 5 - Production/Stable',
44
44
  'Environment :: Web Environment',
45
45
  'Framework :: Django',
46
- 'Framework :: Django :: 2.2',
47
- 'Framework :: Django :: 3.2',
48
46
  'Framework :: Django :: 4.0',
47
+ 'Framework :: Django :: 5.0',
48
+ 'Framework :: Django :: 5.1',
49
49
  'Intended Audience :: Developers',
50
50
  'License :: OSI Approved :: Apache Software License',
51
51
  'Natural Language :: English',
52
52
  'Operating System :: OS Independent',
53
53
  'Programming Language :: Python',
54
54
  'Programming Language :: Python :: 3',
55
- 'Programming Language :: Python :: 3.7',
56
55
  'Programming Language :: Python :: 3.8',
57
56
  'Programming Language :: Python :: 3.9',
58
57
  'Programming Language :: Python :: 3.10',
58
+ 'Programming Language :: Python :: 3.11',
59
+ 'Programming Language :: Python :: 3.12',
59
60
  'Programming Language :: Python :: 3 :: Only',
60
61
  'Topic :: Internet',
61
62
  'Topic :: Internet :: WWW/HTTP',
@@ -1,2 +0,0 @@
1
- Django>=2.2.25
2
- pytz>=2021.3