django-letsencrypt 6.0.0__py3-none-any.whl → 6.0.1__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,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.
@@ -1,5 +1,5 @@
1
- django_letsencrypt-6.0.0.dist-info/licenses/LICENSE,sha256=eCE-vLWjRU-36lD22l8Lbp_XpPT1Esdl0o70KlwBYHo,11345
2
- letsencrypt/__init__.py,sha256=-8kyCfJx0VqAlsX1pgSepYHFHCQLRPcbsb6L6RVXf_k,646
1
+ django_letsencrypt-6.0.1.dist-info/licenses/LICENSE,sha256=eCE-vLWjRU-36lD22l8Lbp_XpPT1Esdl0o70KlwBYHo,11345
2
+ letsencrypt/__init__.py,sha256=GVaK4TKvwtDam-ixTWGRU2hJTFB6vkBG9jqd5ITsCj0,646
3
3
  letsencrypt/admin.py,sha256=4m_fVteJeP6-BpvdyAcHEJ1s3zARl2F4y4h8a5uYS80,1758
4
4
  letsencrypt/apps.py,sha256=KTY-mm_Pv5uHEhEKuPgMiJCTEq4-NtwOQK1D_gfTN2Y,751
5
5
  letsencrypt/models.py,sha256=nU-sjVIb8V2_-TwxX7qxR1ioSwH00JxSDN-ePGsHKSY,1568
@@ -8,7 +8,7 @@ letsencrypt/urls.py,sha256=PKpM9a3pIszlZzOfam1l3os4fjChu8RCtMxDb5ReNMI,749
8
8
  letsencrypt/views.py,sha256=YsdN-i4larvajzoQuTBAj9CX3watHOu1zYNESRBBR5E,893
9
9
  letsencrypt/migrations/0001_squashed_0004_squash_for_mysql_support.py,sha256=R2-FB0gb6dIHVfM0RQOT2-qV0Iwn3i8g9WXvU9M4zc0,900
10
10
  letsencrypt/migrations/__init__.py,sha256=753utKcjHt5snhTYhBfAY_5QBvTMpDF8zFkiAwbcn40,564
11
- django_letsencrypt-6.0.0.dist-info/METADATA,sha256=r4_RY3QsSwfDf6O-4lXxxxIDrZtnI1-6BdN3unFaIlw,5723
12
- django_letsencrypt-6.0.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
13
- django_letsencrypt-6.0.0.dist-info/top_level.txt,sha256=cDimIKtupoBiTWXykGSs1dP1xs8jrAoTwz1txrc2Img,12
14
- django_letsencrypt-6.0.0.dist-info/RECORD,,
11
+ django_letsencrypt-6.0.1.dist-info/METADATA,sha256=F5VgPWvbUjn9nbaElnmy7BNcAwpIp3dOD0BCse9fhv4,5696
12
+ django_letsencrypt-6.0.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
13
+ django_letsencrypt-6.0.1.dist-info/top_level.txt,sha256=cDimIKtupoBiTWXykGSs1dP1xs8jrAoTwz1txrc2Img,12
14
+ django_letsencrypt-6.0.1.dist-info/RECORD,,
letsencrypt/__init__.py CHANGED
@@ -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'