django-letsencrypt 4.1.0__py3-none-any.whl → 5.1.0__py3-none-any.whl

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.
@@ -1,37 +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 (>=2.2.25)
34
- Requires-Dist: pytz (>=2021.3)
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
35
46
 
36
47
  # Let's Encrypt App for Django
37
48
 
@@ -54,13 +65,16 @@ And of course all wrapped up and published to
54
65
  supported so far:
55
66
 
56
67
  - Python Versions Supported:
57
- - `3.10` (Django `4.0` and `3.2` only)
58
- - `3.8`
59
- - `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`)
60
74
  - Django Versions Supported:
61
- - `4.0` minimum version `4.0`
62
- - `3.2` minimum version `3.2.10`
63
- - `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`
64
78
  - Databases Supported:
65
79
  - `mysql`
66
80
  - `postgres`
@@ -69,9 +83,9 @@ supported so far:
69
83
  # Recent Build Status Badges
70
84
 
71
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)
72
- - [![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)
73
- - [![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)
74
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)
75
89
  - [![Codecov - Master](https://codecov.io/gh/urda/django-letsencrypt/branch/master/graph/badge.svg?token=yn64lBfwZr)](https://codecov.io/gh/urda/django-letsencrypt)
76
90
 
77
91
  # Installation & Configuration
@@ -117,5 +131,3 @@ take a moment to read the `README.md` file within the
117
131
  [`example_project`](https://github.com/urda/django-letsencrypt/tree/master/example_project)
118
132
  directory, and follow the directions. That will spin up a small sample django
119
133
  application already configured for you to try out.
120
-
121
-
@@ -1,4 +1,5 @@
1
- letsencrypt/__init__.py,sha256=mqASKWhnmU30AAFCWVN7mNhebx0Ge-WFFgnAOjooPf0,646
1
+ django_letsencrypt-5.1.0.dist-info/licenses/LICENSE,sha256=eCE-vLWjRU-36lD22l8Lbp_XpPT1Esdl0o70KlwBYHo,11345
2
+ letsencrypt/__init__.py,sha256=s0fUwbP1-rlH3mgJQ-dizLEgWa9rx5CDLzFlmDEpMw0,646
2
3
  letsencrypt/admin.py,sha256=4m_fVteJeP6-BpvdyAcHEJ1s3zARl2F4y4h8a5uYS80,1758
3
4
  letsencrypt/apps.py,sha256=KTY-mm_Pv5uHEhEKuPgMiJCTEq4-NtwOQK1D_gfTN2Y,751
4
5
  letsencrypt/models.py,sha256=nU-sjVIb8V2_-TwxX7qxR1ioSwH00JxSDN-ePGsHKSY,1568
@@ -7,8 +8,7 @@ letsencrypt/urls.py,sha256=PKpM9a3pIszlZzOfam1l3os4fjChu8RCtMxDb5ReNMI,749
7
8
  letsencrypt/views.py,sha256=YsdN-i4larvajzoQuTBAj9CX3watHOu1zYNESRBBR5E,893
8
9
  letsencrypt/migrations/0001_squashed_0004_squash_for_mysql_support.py,sha256=R2-FB0gb6dIHVfM0RQOT2-qV0Iwn3i8g9WXvU9M4zc0,900
9
10
  letsencrypt/migrations/__init__.py,sha256=753utKcjHt5snhTYhBfAY_5QBvTMpDF8zFkiAwbcn40,564
10
- django_letsencrypt-4.1.0.dist-info/LICENSE,sha256=eCE-vLWjRU-36lD22l8Lbp_XpPT1Esdl0o70KlwBYHo,11345
11
- django_letsencrypt-4.1.0.dist-info/METADATA,sha256=APqjicQtaKDjFUUKlD2JcIM91HH2V82KHVERpTqJRVw,4790
12
- django_letsencrypt-4.1.0.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
13
- django_letsencrypt-4.1.0.dist-info/top_level.txt,sha256=cDimIKtupoBiTWXykGSs1dP1xs8jrAoTwz1txrc2Img,12
14
- django_letsencrypt-4.1.0.dist-info/RECORD,,
11
+ django_letsencrypt-5.1.0.dist-info/METADATA,sha256=JlRmUElpQsVprbNiAeMkhSi33UBGn-w6lFISBvTpGzM,5193
12
+ django_letsencrypt-5.1.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
13
+ django_letsencrypt-5.1.0.dist-info/top_level.txt,sha256=cDimIKtupoBiTWXykGSs1dP1xs8jrAoTwz1txrc2Img,12
14
+ django_letsencrypt-5.1.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.37.1)
2
+ Generator: setuptools (78.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
letsencrypt/__init__.py CHANGED
@@ -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'