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 56b33de commit 099cde0Copy full SHA for 099cde0
.github/workflows/test.yml
@@ -333,7 +333,13 @@ jobs:
333
- name: Install Release Dependencies
334
run: |
335
just setup ${{ steps.sp.outputs.python-path }}
336
- just test-lock Django~=${{ matrix.django-version }}.0
+ if [[ "${{ matrix.django-version }}" =~ (a|b|rc) ]]; then
337
+ # prerelease, use exact version pin
338
+ just test-lock Django==${{ matrix.django-version }}.0
339
+ else
340
+ # stable release, use compatible release specifier
341
+ just test-lock Django~=${{ matrix.django-version }}.0
342
+ fi
343
344
- name: Install mysqlclient if needed
345
if: ${{ matrix.mysqlclient-version != '' }}
0 commit comments