Skip to content

Commit 439b44b

Browse files
author
hauntsaninja
committed
mypy: attempt to fix build
1 parent 17b0a7a commit 439b44b

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
python-version: ${{ matrix.python }}
4343
architecture: ${{ matrix.arch }}
4444
- name: install tox
45-
run: pip install --upgrade setuptools tox==3.9.0
45+
run: pip install --upgrade setuptools 'virtualenv<20' tox==3.9.0
4646
- name: setup tox environment
4747
run: tox -e ${{ matrix.toxenv }} --notest
4848
- name: test

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ jobs:
8181

8282
install:
8383
- pip install -U pip setuptools
84+
- pip install -U 'virtualenv<20'
8485
- pip install -U tox==3.9.0
8586
- tox --notest
8687

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ environment:
1414

1515
install:
1616
- "git submodule update --init mypy/typeshed"
17-
- "%PYTHON%\\python.exe -m pip install -U setuptools tox==3.9.0"
17+
- "%PYTHON%\\python.exe -m pip install -U setuptools 'virtualenv<20' tox==3.9.0"
1818
- "%PYTHON%\\python.exe -m tox -e py37 --notest"
1919

2020
build: off

0 commit comments

Comments
 (0)