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 3dd1843 commit d797d37Copy full SHA for d797d37
.github/workflows/ci.yml
@@ -47,13 +47,13 @@ jobs:
47
- name: Set up Python ${{ matrix.python }}
48
uses: actions/setup-python@v5
49
with:
50
- python-version: ${{ matrix.python }}
+ python-version: ${{ matrix.python }}.*
51
- name: Upgraded pip
52
run: pip install --upgrade pip
53
- name: Install dependencies
54
run: pip install -r test-requirements.txt
55
- name: Install Django
56
- run: pip install -U django==${{ matrix.django }}
+ run: pip install -U django~=${{ matrix.django }}.0
57
- name: Run tests
58
run: python manage.py test
59
- name: Run black
0 commit comments