File tree Expand file tree Collapse file tree 5 files changed +4
-31
lines changed Expand file tree Collapse file tree 5 files changed +4
-31
lines changed Original file line number Diff line number Diff line change @@ -9,13 +9,17 @@ Unreleased
992.0.8
1010=====
1111
12+ * Added **Django 4.0 ** compatibility. Thanks to @kevinmarsh (#760)
1213* Add tests for **Django 4.0 **, **Python 3.9 ** and **Python 3.10 **.
1314 Thank to @kevinmarsh (#739)
1415* Introduce CODE_OF_CONDUCT.md for the project. Thank to @hugovk (#758)
1516* Add precision in the documentation for PipelineCachedStorage.
1617 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.
1720* Edit github actions matrix: django 3.2.9 support python 3.10, remove
1821 python 4.0 (doesn't exist) and exclude pypy-3.8 for django-main.
22+ * Add .pre-commit-config.yaml. Thanks to @hugovk (#762)
1923* Update package.json due to CoffeeScript on NPM has moved to "coffeescript"
2024* Update setup.py with Django 4.0 and Python 3.10
2125
Original file line number Diff line number Diff line change @@ -158,21 +158,6 @@ Install the jsmin library with your favorite Python package manager ::
158158 pip install jsmin
159159
160160
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-
176161Terser compressor
177162===================
178163
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -226,10 +226,6 @@ def test_jsmin(self):
226226 self ._test_compressor ('pipeline.compressors.jsmin.JSMinCompressor' ,
227227 'js' , 'pipeline/compressors/jsmin.js' )
228228
229- def test_slimit (self ):
230- self ._test_compressor ('pipeline.compressors.slimit.SlimItCompressor' ,
231- 'js' , 'pipeline/compressors/slimit.js' )
232-
233229 def test_csshtmljsminify (self ):
234230 self ._test_compressor ('pipeline.compressors.csshtmljsminify.CssHtmlJsMinifyCompressor' ,
235231 'css' , 'pipeline/compressors/csshtmljsminify.css' )
Original file line number Diff line number Diff line change 4444 coverage
4545 jsmin ==3.0.0
4646 ply ==3.4
47- slimit ==0.8.1
4847 css-html-js-minify ==2.5.5
4948setenv =
5049 DJANGO_SETTINGS_MODULE = tests.settings
You can’t perform that action at this time.
0 commit comments