Skip to content

Commit

Permalink
Merge pull request #2 from DmytroLitvinov/add-django-5
Browse files Browse the repository at this point in the history
Added support for Django ^5.0
  • Loading branch information
ivellios authored Oct 7, 2024
2 parents 36d7180 + cf85636 commit 80ce506
Show file tree
Hide file tree
Showing 6 changed files with 2,225 additions and 1,642 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@master
with:
python-version: '3.11'
python-version: '3.12'
- name: Install dependencies
run: pip install tox poetry
- name: Safety Check
Expand All @@ -39,8 +39,14 @@ jobs:

strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
django-version: ["4.0", "4.1", "4.2"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
django-version: ["4.0", "4.1", "4.2", "5.0", "5.1"]
exclude:
- python-version: 3.9
django-version: 5.0
- python-version: 3.9
django-version: 5.1


steps:
- uses: actions/checkout@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/workflow_security.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@master
with:
python-version: '3.11'
python-version: '3.12'
- name: Install dependencies
run: pip install tox checkov
- name: Workflow safety check
Expand Down
Loading

0 comments on commit 80ce506

Please sign in to comment.