File tree 5 files changed +4
-31
lines changed
5 files changed +4
-31
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,17 @@ Unreleased
9
9
2.0.8
10
10
=====
11
11
12
+ * Added **Django 4.0 ** compatibility. Thanks to @kevinmarsh (#760)
12
13
* Add tests for **Django 4.0 **, **Python 3.9 ** and **Python 3.10 **.
13
14
Thank to @kevinmarsh (#739)
14
15
* Introduce CODE_OF_CONDUCT.md for the project. Thank to @hugovk (#758)
15
16
* Add precision in the documentation for PipelineCachedStorage.
16
17
Thank to @gatsinski (#739)
18
+ * Drop support for slimit compressor (#765) due to package not released
19
+ an official version for Python 3 and not any new package release from 2013.
17
20
* Edit github actions matrix: django 3.2.9 support python 3.10, remove
18
21
python 4.0 (doesn't exist) and exclude pypy-3.8 for django-main.
22
+ * Add .pre-commit-config.yaml. Thanks to @hugovk (#762)
19
23
* Update package.json due to CoffeeScript on NPM has moved to "coffeescript"
20
24
* Update setup.py with Django 4.0 and Python 3.10
21
25
Original file line number Diff line number Diff line change @@ -158,21 +158,6 @@ Install the jsmin library with your favorite Python package manager ::
158
158
pip install jsmin
159
159
160
160
161
- SlimIt compressor
162
- =================
163
-
164
- The slimit compressor uses `SlimIt <https://slimit.readthedocs.io >`_ to
165
- compress javascripts.
166
-
167
- To use it add this to your ``PIPELINE['JS_COMPRESSOR'] `` ::
168
-
169
- PIPELINE['JS_COMPRESSOR'] = 'pipeline.compressors.slimit.SlimItCompressor'
170
-
171
- Install the slimit library with your favorite Python package manager ::
172
-
173
- pip install slimit
174
-
175
-
176
161
Terser compressor
177
162
===================
178
163
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -226,10 +226,6 @@ def test_jsmin(self):
226
226
self ._test_compressor ('pipeline.compressors.jsmin.JSMinCompressor' ,
227
227
'js' , 'pipeline/compressors/jsmin.js' )
228
228
229
- def test_slimit (self ):
230
- self ._test_compressor ('pipeline.compressors.slimit.SlimItCompressor' ,
231
- 'js' , 'pipeline/compressors/slimit.js' )
232
-
233
229
def test_csshtmljsminify (self ):
234
230
self ._test_compressor ('pipeline.compressors.csshtmljsminify.CssHtmlJsMinifyCompressor' ,
235
231
'css' , 'pipeline/compressors/csshtmljsminify.css' )
Original file line number Diff line number Diff line change 44
44
coverage
45
45
jsmin ==3.0.0
46
46
ply ==3.4
47
- slimit ==0.8.1
48
47
css-html-js-minify ==2.5.5
49
48
setenv =
50
49
DJANGO_SETTINGS_MODULE = tests.settings
You can’t perform that action at this time.
0 commit comments