Skip to content

Commit ef47b37

Browse files
Merge pull request #933 from LalatenduMohanty/remove-virtualenv-pin
fix(ci): remove virtualenv<21 pin from CI workflows
2 parents e655192 + 0094f31 commit ef47b37

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/check.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
python-version: "3.11" # minimum supported lang version
2222

2323
- name: Install dependencies
24-
run: python -m pip install hatch 'click!=8.3.0' 'virtualenv<21'
24+
run: python -m pip install hatch 'click!=8.3.0'
2525

2626
- name: Run pre-commit hooks
2727
run: hatch run lint:install-hooks && hatch run lint:precommit
@@ -42,7 +42,7 @@ jobs:
4242
python-version: "3.11" # minimum supported lang version
4343

4444
- name: Install dependencies
45-
run: python -m pip install hatch 'click!=8.3.0' 'virtualenv<21'
45+
run: python -m pip install hatch 'click!=8.3.0'
4646

4747
- name: Run
4848
run: hatch run lint:check
@@ -63,7 +63,7 @@ jobs:
6363
python-version: "3.11" # minimum supported lang version
6464

6565
- name: Install dependencies
66-
run: python -m pip install hatch 'click!=8.3.0' 'virtualenv<21'
66+
run: python -m pip install hatch 'click!=8.3.0'
6767

6868
- name: Check MyPy
6969
run: hatch run mypy:check
@@ -84,7 +84,7 @@ jobs:
8484
python-version: "3.11" # minimum supported lang version
8585

8686
- name: Install dependencies
87-
run: python -m pip install hatch 'click!=8.3.0' 'virtualenv<21'
87+
run: python -m pip install hatch 'click!=8.3.0'
8888

8989
- name: Run
9090
run: hatch run lint:pkglint
@@ -121,7 +121,7 @@ jobs:
121121
python-version: "3.11" # minimum supported lang version
122122

123123
- name: Install dependencies
124-
run: python -m pip install hatch 'click!=8.3.0' 'virtualenv<21'
124+
run: python -m pip install hatch 'click!=8.3.0'
125125

126126
- name: Run
127127
run: hatch run docs:build

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
run: unshare -rn echo "unshare works"
5050

5151
- name: Install dependencies
52-
run: python -m pip install hatch 'click!=8.3.0' 'virtualenv<21'
52+
run: python -m pip install hatch 'click!=8.3.0'
5353

5454
- name: Run tests
5555
run: hatch run test:test
@@ -123,7 +123,7 @@ jobs:
123123
run: unshare -rn echo "unshare works"
124124

125125
- name: Install dependencies
126-
run: python -m pip install hatch 'click!=8.3.0' 'virtualenv<21'
126+
run: python -m pip install hatch 'click!=8.3.0'
127127

128128
- name: Run tests
129129
run: HATCH_PYTHON=${{ matrix.python-version }} ./e2e/${{ matrix.test-script }}.sh
@@ -167,7 +167,7 @@ jobs:
167167
**/pyproject.toml
168168
169169
- name: Install dependencies
170-
run: python -m pip install hatch 'click!=8.3.0' 'virtualenv<21'
170+
run: python -m pip install hatch 'click!=8.3.0'
171171

172172
- name: Download coverage data
173173
uses: actions/download-artifact@v7

0 commit comments

Comments
 (0)