Skip to content

Commit a7e0976

Browse files
authored
Merge pull request #262 from appsignal/fix-python-ci
Fix CI by pinning virtualenv version
2 parents 664a615 + 6bcb100 commit a7e0976

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
- name: "Install hatch"
28-
run: "pip install hatch \"click<8.3.0\""
28+
run: "pip install hatch \"virtualenv<21.0.0\""
2929
- name: "Run tests"
3030
run: "hatch -v run test.py$(echo ${{ matrix.python-version }} | tr -d '.'):pytest"
3131

@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
python-version: 3.12
4242
- name: "Install hatch"
43-
run: "pip install hatch \"click<8.3.0\""
43+
run: "pip install hatch"
4444
- name: "Build package"
4545
run: "hatch run build:all"
4646
- name: "Ensure package has been built"
@@ -61,7 +61,7 @@ jobs:
6161
ruby-version: "3.3"
6262
bundler-cache: true
6363
- name: "Install hatch"
64-
run: "pip install hatch \"click<8.3.0\""
64+
run: "pip install hatch"
6565
- name: "Init Git submodules"
6666
run: "git submodule init"
6767
- name: "Update Git submodules"
@@ -78,7 +78,7 @@ jobs:
7878
with:
7979
python-version: 3.12
8080
- name: "Install hatch"
81-
run: "pip install hatch \"click<8.3.0\""
81+
run: "pip install hatch"
8282
- name: "Run style linter"
8383
run: "hatch -v run lint:style"
8484

@@ -91,7 +91,7 @@ jobs:
9191
with:
9292
python-version: 3.12
9393
- name: "Install hatch"
94-
run: "pip install hatch \"click<8.3.0\""
94+
run: "pip install hatch"
9595
- name: "Run typing linter"
9696
run: "hatch -v run lint:typing"
9797

0 commit comments

Comments
 (0)