Skip to content

Commit c83fd43

Browse files
authored
Merge pull request #107 from cclauss/patch-1
Add support for Django 5
2 parents b871d3c + 9f463d2 commit c83fd43

File tree

5 files changed

+605
-731
lines changed

5 files changed

+605
-731
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.11"]
13+
python-version: ["3.12"]
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616

1717
- name: Install poetry
1818
run: pipx install poetry
1919

20-
- uses: actions/setup-python@v4
20+
- uses: actions/setup-python@v5
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
cache: poetry
@@ -47,7 +47,7 @@ jobs:
4747
parallel: true
4848

4949
- name: Upload pages artifact
50-
uses: actions/upload-pages-artifact@v1
50+
uses: actions/upload-pages-artifact@v2
5151
if: github.event_name == 'push' && github.ref_name == 'master' && github.repository_owner == 'monim67'
5252
with:
5353
path: ./pages
@@ -57,14 +57,14 @@ jobs:
5757
needs: pre-build
5858
strategy:
5959
matrix:
60-
python-version: ["3.10", "3.9", "3.8", "3.7"]
60+
python-version: ["3.11", "3.10", "3.9", "3.8"]
6161
steps:
62-
- uses: actions/checkout@v3
62+
- uses: actions/checkout@v4
6363

6464
- name: Install poetry
6565
run: pipx install poetry
6666

67-
- uses: actions/setup-python@v4
67+
- uses: actions/setup-python@v5
6868
with:
6969
python-version: ${{ matrix.python-version }}
7070
cache: poetry
@@ -109,4 +109,4 @@ jobs:
109109
steps:
110110
- name: Deploy to GitHub Pages
111111
id: deployment
112-
uses: actions/deploy-pages@v1
112+
uses: actions/deploy-pages@v3

docs/Getting_Started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Getting Started
77
Prerequisites
88
********************
99

10-
- Python >= 3.7
10+
- Python >= 3.8
1111
- Django >= 2.0
1212
- Bootstrap >= 3
1313
- jquery >= 1.7.1

0 commit comments

Comments
 (0)