Skip to content

Commit c759d2d

Browse files
committed
update ci.yml and setup.py for new release
1 parent cfce28b commit c759d2d

File tree

4 files changed

+12
-34
lines changed

4 files changed

+12
-34
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- main
1010

1111
jobs:
12-
linter:
12+
checks:
1313
runs-on: ubuntu-latest
1414

1515
steps:
@@ -52,34 +52,5 @@ jobs:
5252
- name: Run black
5353
run: poetry run black .
5454

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-
8455
- name: Collect static files
85-
run: poetry run python manage.py collectstatic --noinput
56+
run: poetry run python manage.py collectstatic --noinput

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
5454
# built documents.
5555
#
5656
# The short X.Y version.
57-
version = "0.5.0"
57+
version = "0.5.1"
5858
# The full version, including alpha/beta/rc tags.
59-
release = "0.5.0"
59+
release = "0.5.1"
6060

6161
# The language for content autogenerated by Sphinx. Refer to documentation
6262
# for a list of supported languages.

docs/releases/index.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
Release Notes
33
=============
44

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+
512
0.5.0
613
^^^^^
714

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from setuptools import find_packages, setup
44

5-
VERSION = (0, 5, 0)
5+
VERSION = (0, 5, 1)
66
__version__ = ".".join(map(str, VERSION))
77

88

0 commit comments

Comments
 (0)