Skip to content

Commit d7f2fc9

Browse files
committed
Fix ci error
1 parent 48a026e commit d7f2fc9

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
allow-prereleases: true
2828
- name: Install and configure Poetry
2929
run: |
30-
pip install -U pip poetry
30+
python3 -m pip install -U pip poetry
3131
poetry env use ${{ matrix.python-version }}
3232
- name: Install dependencies
3333
run: poetry install --all-extras --all-groups
@@ -42,9 +42,11 @@ jobs:
4242
steps:
4343
- uses: actions/checkout@v5
4444
- uses: actions/setup-python@v6
45+
with:
46+
python-version: "3.x"
4547
- name: Install and configure Poetry
4648
run: |
47-
pip install -U pip poetry
49+
python3 -m pip install -U pip poetry
4850
poetry env use 3.7
4951
- name: Install dependencies
5052
run: poetry install --all-extras --all-groups

0 commit comments

Comments
 (0)