We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16c289e commit b5fca60Copy full SHA for b5fca60
.github/workflows/test.yml
@@ -58,7 +58,7 @@ jobs:
58
59
- postgres-version: '9.6'
60
django-version: '5.2b1'
61
-
+
62
- postgres-version: '12'
63
64
@@ -121,7 +121,11 @@ jobs:
121
- name: Install Release Dependencies
122
run: |
123
just setup ${{ steps.sp.outputs.python-path }}
124
- just test-lock Django~=${{ matrix.django-version }}.0
+ if [ "${{ matrix.django-version }}" = "5.2b1" ]; then
125
+ just test-lock "Django==${{ matrix.django-version }}"
126
+ else
127
+ just test-lock "Django~=${{ matrix.django-version }}.0"
128
+ fi
129
- name: Install Emacs
130
if: ${{ github.event.inputs.debug == 'true' }}
131
0 commit comments