File tree Expand file tree Collapse file tree 4 files changed +12
-34
lines changed Expand file tree Collapse file tree 4 files changed +12
-34
lines changed Original file line number Diff line number Diff line change 9
9
- main
10
10
11
11
jobs :
12
- linter :
12
+ checks :
13
13
runs-on : ubuntu-latest
14
14
15
15
steps :
52
52
- name : Run black
53
53
run : poetry run black .
54
54
55
- - name : Save workspace
56
- uses : actions/upload-artifact@v2
57
- with :
58
- name : workspace
59
- path : .venv
60
-
61
- checks :
62
- runs-on : ubuntu-latest
63
- needs : linter
64
-
65
- steps :
66
- - name : Checkout code
67
- uses : actions/checkout@v2
68
-
69
- - name : Download workspace
70
- uses : actions/download-artifact@v2
71
- with :
72
- name : workspace
73
- path : .venv
74
-
75
- - name : Set up Python
76
- uses : actions/setup-python@v2
77
- with :
78
- python-version : " 3.12"
79
-
80
- - name : Configure Poetry
81
- run : |
82
- poetry config virtualenvs.in-project true
83
-
84
55
- name : Collect static files
85
- run : poetry run python manage.py collectstatic --noinput
56
+ run : poetry run python manage.py collectstatic --noinput
Original file line number Diff line number Diff line change 54
54
# built documents.
55
55
#
56
56
# The short X.Y version.
57
- version = "0.5.0 "
57
+ version = "0.5.1 "
58
58
# The full version, including alpha/beta/rc tags.
59
- release = "0.5.0 "
59
+ release = "0.5.1 "
60
60
61
61
# The language for content autogenerated by Sphinx. Refer to documentation
62
62
# for a list of supported languages.
Original file line number Diff line number Diff line change 2
2
Release Notes
3
3
=============
4
4
5
+ 0.5.1
6
+ ^^^^^
7
+
8
+ - Fix `collectstatic ` command error when using ManifestStaticFilesStorage. (#148).
9
+ - Run `collectstatic ` in demo project in a CI step.
10
+
11
+
5
12
0.5.0
6
13
^^^^^
7
14
Original file line number Diff line number Diff line change 2
2
3
3
from setuptools import find_packages , setup
4
4
5
- VERSION = (0 , 5 , 0 )
5
+ VERSION = (0 , 5 , 1 )
6
6
__version__ = "." .join (map (str , VERSION ))
7
7
8
8
You can’t perform that action at this time.
0 commit comments