We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 194e430 commit f7cda1eCopy full SHA for f7cda1e
.github/workflows/test-integrations-web-frameworks-1.yml
@@ -64,6 +64,7 @@ jobs:
64
- name: Test django latest
65
run: |
66
set -x # print commands that are executed
67
+ export PIP_CONSTRAINT=constraints.txt
68
./scripts/runtox.sh "py${{ matrix.python-version }}-django-latest"
69
- name: Test flask latest
70
@@ -140,6 +141,7 @@ jobs:
140
141
- name: Test django pinned
142
143
144
145
./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-django"
146
- name: Test flask pinned
147
constraints.txt
@@ -0,0 +1,3 @@
1
+# Workaround for https://github.com/pypa/setuptools/issues/4519.
2
+# Applies only for Django tests.
3
+setuptools<72.0.0
0 commit comments