Skip to content

Commit

Permalink
chore: update django to 5.1.2 (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
rmoesbergen authored Oct 18, 2024
1 parent 69b12b5 commit 2d579b3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,13 @@ jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.12"
- uses: actions/checkout@v4

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pylint==3.2.6 pylint-django==2.5.5 black==24.8.0
pip install pylint==3.3.1 pylint-django==2.6.1 black==24.8.0
- name: Run pylint and black
run: |
Expand Down
7 changes: 6 additions & 1 deletion LedenAdministratie/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,12 @@ class Meta:
]

def save(
self, force_insert=False, force_update=False, using=None, update_fields=None
self,
*args,
force_insert=False,
force_update=False,
using=None,
update_fields=None,
):
if self.thumbnail is None and self.foto is not None:
try:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Django==5.0.9
Django==5.1.2
django-cors-headers==4.5.0
django-oauth-toolkit==2.4.0
django-tinymce==4.1.0
Expand Down

0 comments on commit 2d579b3

Please sign in to comment.