Skip to content

Commit 2ba6b15

Browse files
authored
Fix CI, with Python 3.6 support. (#643)
1 parent 040d85e commit 2ba6b15

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
Django ${{ matrix.django-version }},
1010
Redis.py ${{ matrix.redis-version }}
1111
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-20.04
1313

1414
strategy:
1515
fail-fast: false
@@ -86,7 +86,7 @@ jobs:
8686
- name: Install dependencies
8787
run: |
8888
python -m pip install --upgrade pip
89-
python -m pip install --upgrade tox tox-gh-actions
89+
python -m pip install --upgrade "tox<4" tox-gh-actions
9090
9191
- name: Tox tests
9292
run: |
@@ -149,7 +149,7 @@ jobs:
149149
- name: Install dependencies
150150
run: |
151151
python -m pip install --upgrade pip
152-
python -m pip install --upgrade tox
152+
python -m pip install --upgrade "tox<4"
153153
154154
- name: Run ${{ matrix.tool }}
155155
run: tox -e ${{ matrix.tool }}

changelog.d/645.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix CI, running tox<4 to still support Python 3.6.

0 commit comments

Comments
 (0)