Skip to content
Prev Previous commit
Next Next commit
correct parameters type
  • Loading branch information
wongcht committed Sep 4, 2023
commit e3e2645d4ddf1c0ae33da87b5ce45fe74ff2c136
9 changes: 4 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ workflows:
- base-test:
matrix:
parameters:
python-version: [3.8, 3.9, 3.10, 3.11]
django-version: [3.2, 4.0, 4.1, 4.2]
python-version: ["3.8", "3.9", "3.10", "3.11"]
django-version: ["3.2", "4.0", "4.1", "4.2"]
exclude:
- python-version: 3.11
django-version: [3.2, 4.0]
- python-version: "3.11"
django-version: ["3.2", "4.0"]

- coverall:
requires:
Expand Down Expand Up @@ -73,7 +73,6 @@ jobs:
environment:
COVERALLS_PARALLEL: 1


coverall:
docker:
- image: cimg/python:3.11-node
Expand Down