Skip to content

Commit f5b1a23

Browse files
Updated files with 'repo_helper'. (#11)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent 6e20a9b commit f5b1a23

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.github/workflows/mypy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
python -VV
4949
python -m site
5050
python -m pip install --upgrade pip setuptools wheel
51-
python -m pip install --upgrade tox virtualenv
51+
python -m pip install --upgrade tox virtualenv!=20.16.0
5252
sudo add-apt-repository universe
5353
sudo apt update
5454
sudo apt install libhdf5-dev netcdf-bin libnetcdf-dev
@@ -59,7 +59,7 @@ jobs:
5959
python -VV
6060
python -m site
6161
python -m pip install --upgrade pip setuptools wheel
62-
python -m pip install --upgrade tox virtualenv
62+
python -m pip install --upgrade tox virtualenv!=20.16.0
6363
pip config set global.prefer-binary true
6464
6565
- name: "Run mypy"

.github/workflows/python_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
python -VV
6262
python -m site
6363
python -m pip install --upgrade pip setuptools wheel
64-
python -m pip install --upgrade tox virtualenv
64+
python -m pip install --upgrade tox virtualenv!=20.16.0
6565
pip config set global.prefer-binary true
6666
6767
- name: "Run Tests for Python ${{ matrix.config.python-version }}"

.github/workflows/python_ci_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
python -VV
6363
python -m site
6464
python -m pip install --upgrade pip setuptools wheel
65-
python -m pip install --upgrade tox virtualenv
65+
python -m pip install --upgrade tox virtualenv!=20.16.0
6666
python -m pip install --upgrade coverage_pyver_pragma
6767
sudo add-apt-repository universe
6868
sudo apt update

.github/workflows/python_ci_macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
python -VV
6262
python -m site
6363
python -m pip install --upgrade pip setuptools wheel
64-
python -m pip install --upgrade tox virtualenv
64+
python -m pip install --upgrade tox virtualenv!=20.16.0
6565
6666
- name: "Run Tests for Python ${{ matrix.config.python-version }}"
6767
if: steps.setup-python.outcome == 'success'

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ envlist = py36, py37, py38, py39, py310, mypy, build
2020
skip_missing_interpreters = True
2121
isolated_build = True
2222
requires =
23-
pip>=21
23+
pip>=21,!=22.2
2424
tox-envlist>=0.2.1
25+
virtualenv!=20.16.0
2526

2627
[envlists]
2728
test = py36, py37, py38, py39, py310

0 commit comments

Comments
 (0)