Skip to content

Commit

Permalink
Merge pull request #107 from cclauss/patch-1
Browse files Browse the repository at this point in the history
Add support for Django 5
  • Loading branch information
monim67 authored Dec 9, 2023
2 parents b871d3c + 9f463d2 commit c83fd43
Show file tree
Hide file tree
Showing 5 changed files with 605 additions and 731 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install poetry
run: pipx install poetry

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
parallel: true

- name: Upload pages artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v2
if: github.event_name == 'push' && github.ref_name == 'master' && github.repository_owner == 'monim67'
with:
path: ./pages
Expand All @@ -57,14 +57,14 @@ jobs:
needs: pre-build
strategy:
matrix:
python-version: ["3.10", "3.9", "3.8", "3.7"]
python-version: ["3.11", "3.10", "3.9", "3.8"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install poetry
run: pipx install poetry

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
Expand Down Expand Up @@ -109,4 +109,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v3
2 changes: 1 addition & 1 deletion docs/Getting_Started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Getting Started
Prerequisites
********************

- Python >= 3.7
- Python >= 3.8
- Django >= 2.0
- Bootstrap >= 3
- jquery >= 1.7.1
Expand Down
Loading

0 comments on commit c83fd43

Please sign in to comment.