Skip to content

Commit 019679d

Browse files
committed
🩹 Fix hatch dependency
1 parent 31089b6 commit 019679d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/python-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install Hatch
2626
run: pipx install hatch
2727
- name: Patch virtualenv
28-
run: pipx inject --force hatch virtualenv<21
28+
run: pipx inject --force hatch "virtualenv<21"
2929
- name: Install dependencies
3030
run: |
3131
wget https://github.com/jgm/pandoc/releases/download/${{ matrix.pandoc-version }}/pandoc-${{ matrix.pandoc-version }}-1-amd64.deb
@@ -49,7 +49,7 @@ jobs:
4949
- name: Install Hatch
5050
run: pipx install hatch
5151
- name: Patch virtualenv
52-
run: pipx inject --force hatch virtualenv<21
52+
run: pipx inject --force hatch "virtualenv<21"
5353
- name: Install dependencies
5454
run: |
5555
wget https://github.com/jgm/pandoc/releases/download/${{ matrix.pandoc-version }}/pandoc-${{ matrix.pandoc-version }}-1-amd64.deb
@@ -73,7 +73,7 @@ jobs:
7373
- name: Install Hatch
7474
run: pipx install hatch
7575
- name: Patch virtualenv
76-
run: pipx inject --force hatch virtualenv<21
76+
run: pipx inject --force hatch "virtualenv<21"
7777
- name: Install dependencies
7878
run: |
7979
wget https://github.com/jgm/pandoc/releases/download/${{ matrix.pandoc-version }}/pandoc-${{ matrix.pandoc-version }}-1-amd64.deb
@@ -100,7 +100,7 @@ jobs:
100100
- name: Install Hatch
101101
run: pipx install hatch
102102
- name: Patch virtualenv
103-
run: pipx inject --force hatch virtualenv<21
103+
run: pipx inject --force hatch "virtualenv<21"
104104
- name: Install dependencies
105105
run: |
106106
wget https://github.com/jgm/pandoc/releases/download/${{ matrix.pandoc-version }}/pandoc-${{ matrix.pandoc-version }}-1-amd64.deb

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
python-version: ${{ matrix.python-version }}
2424
- name: Install Hatch
2525
run: pipx install hatch
26-
- name: Patch virtualenv
27-
run: pipx inject --force hatch virtualenv<21
26+
- name: Patch virtualenv"
27+
run: pipx inject --force hatch "virtualenv<21"
2828
- name: Build and publish
2929
env:
3030
HATCH_INDEX_USER: ${{ secrets.PYPI_USERNAME }}

0 commit comments

Comments
 (0)