1
0
Files
python-django-compressor/python-django-compressor-rcssmin-and-rjsmin-versions.patch
Markéta Machová 0ab37271e6 - Update to 4.5.1
* Officially support Python 3.12 (requires lxml 4.9.3 or higher)
  * Drop support for Django versions before 4.2.
  * Added support for Django 5.1
  * Added new ``COMPRESS_STORAGE_ALIAS`` and ``COMPRESS_OFFLINE_MANIFEST_STORAGE_ALIAS``
    settings. These point to keys in Django's ``storages`` handler. If set by the
    user, Compressor will use these storages, or otherwise will set a default
    storage, given by ``COMPRESS_STORAGE`` and
    ``COMPRESS_OFFLINE_MANIFEST_STORAGE`` respectively on first access.
- Drop already merged patches:
  * python-django-compressor-rcssmin-and-rjsmin-versions.patch
  * lstrip.patch

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:django/python-django-compressor?expand=0&rev=30
2024-09-05 08:38:38 +00:00

14 lines
360 B
Diff

diff -ruN a/setup.py b/setup.py
--- a/setup.py 2023-06-28 00:11:30.000000000 +0200
+++ b/setup.py 2023-12-11 13:19:34.154446612 +0100
@@ -164,7 +164,7 @@
zip_safe=False,
install_requires=[
"django-appconf >= 1.0.3",
- "rcssmin == 1.1.1",
- "rjsmin == 1.2.1",
+ "rcssmin >= 1.1.1",
+ "rjsmin >= 1.2.1",
],
)