Skip to content

Commit 56b659e

Browse files
committed
require python >=3.11
1 parent 415dbad commit 56b659e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/django.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
max-parallel: 4
1515
matrix:
16-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
16+
python-version: ["3.11", "3.12"]
1717
services:
1818
# Label used to access the service container
1919
postgres:
@@ -56,8 +56,8 @@ jobs:
5656
ROUNDWARE_DB_HOST: postgres
5757
ROUNDWARE_DB_PORT: ${{ job.services.postgres.ports[5432] }}
5858
run: |
59-
coverage run --source=roundware roundware/manage.py test --settings=roundware.settings.testing
60-
coverage report -m > coverage-report.txt
59+
.venv/bin/coverage run --source=roundware roundware/manage.py test --settings=roundware.settings.testing
60+
.venv/bin/coverage report -m > coverage-report.txt
6161
cat coverage-report.txt
6262
# - uses: actions/upload-artifact@v2
6363
# with:

0 commit comments

Comments
 (0)