Skip to content

Commit 10e4743

Browse files
authored
chore(ci): add Python 3.11 and Django 4.1 to CI (#143)
Just some housekeeping and local dev tweaks.
1 parent 700dd9b commit 10e4743

File tree

3 files changed

+102
-88
lines changed

3 files changed

+102
-88
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ jobs:
1515
with:
1616
matrix: |
1717
python-version {3.7}, django-version {2.0,2.1,2.2,3.0,3.1}
18-
python-version {3.8}, django-version {2.2,3.0,3.1,3.2,4.0}
19-
python-version {3.9}, django-version {2.2,3.0,3.1,3.2,4.0}
20-
python-version {3.10}, django-version {3.2,4.0}
18+
python-version {3.8}, django-version {2.2,3.0,3.1,3.2,4.0,4.1}
19+
python-version {3.9}, django-version {2.2,3.0,3.1,3.2,4.0,4.1}
20+
python-version {3.10}, django-version {3.2,4.0,4.1}
21+
python-version {3.11}, django-version {3.2,4.0,4.1}
2122
- name: Set matrix output variable
2223
id: set_matrix
2324
run: |
@@ -47,7 +48,7 @@ jobs:
4748
run: |
4849
rm -rf django_object_actions
4950
pip install --force-reinstall dist/*.whl
50-
- run: pip install "Django~=${{ matrix.django-version }}"
51+
- run: pip install "Django==${{ matrix.django-version }}.*"
5152
- run: make test
5253

5354
lint:

0 commit comments

Comments
 (0)