Skip to content

Commit

Permalink
Update django-pipeline to latest rockstor#2689
Browse files Browse the repository at this point in the history
Remove version pinning given we have now removed
the prior dual constraint re Python version and
Django version.
  • Loading branch information
phillxnet committed Oct 12, 2023
1 parent 8a4f59e commit 5a6abb2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ python = "~3.9"
django = "~2.2"
django-oauth-toolkit = "==1.1.2"
djangorestframework = "==3.9.3"
django-pipeline = "==1.7.0" # last version listed with Python 3.6 and Django 1.11 compatibility
django-pipeline = "*"
django-braces = "==1.13.0" # look to 1.14.0 (30 Dec 2019) as Django 1.11.0+ now
oauthlib = "==3.1.0" # Last Python 2.7 compat + 3.7 compat.
python-engineio = "==2.3.2" # Revisit version post 3.0.0
Expand Down
2 changes: 1 addition & 1 deletion src/rockstor/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
"huey.contrib.djhuey",
)

STATICFILES_STORAGE = "pipeline.storage.PipelineCachedStorage"
STATICFILES_STORAGE = "pipeline.storage.PipelineManifestStorage"

# Have django-pipeline collate storageadmin js/jst files into one storageadmin.js file
# which is then referenced in setup.html and base.html templates.
Expand Down

0 comments on commit 5a6abb2

Please sign in to comment.