Skip to content

Commit

Permalink
Fix CI, with Python 3.6 support. (#643)
Browse files Browse the repository at this point in the history
  • Loading branch information
iurisilvio authored Jan 19, 2023
1 parent 040d85e commit 2ba6b15
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
Django ${{ matrix.django-version }},
Redis.py ${{ matrix.redis-version }}
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

strategy:
fail-fast: false
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade tox tox-gh-actions
python -m pip install --upgrade "tox<4" tox-gh-actions
- name: Tox tests
run: |
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade tox
python -m pip install --upgrade "tox<4"
- name: Run ${{ matrix.tool }}
run: tox -e ${{ matrix.tool }}
Expand Down
1 change: 1 addition & 0 deletions changelog.d/645.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix CI, running tox<4 to still support Python 3.6.

0 comments on commit 2ba6b15

Please sign in to comment.