GitHub actions: Ignore flake8 no longer supporting Python 3.7 (#2971)

This commit is contained in:
Raphael Michel
2022-12-12 15:29:47 +01:00
committed by GitHub
parent 86b5ba6937
commit 495a21c683
4 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ jobs:
- name: Install system dependencies
run: sudo apt update && sudo apt install gettext mariadb-client
- name: Install Python dependencies
run: pip3 install -e ".[dev]" mysqlclient psycopg2-binary
run: pip3 install --ignore-requires-python -e ".[dev]" mysqlclient psycopg2-binary # We ignore that flake8 needs newer python as we don't run flake8 during tests
working-directory: ./src
- name: Run checks
run: python manage.py check