Skip to content

Commit 14a8903

Browse files
committed
whoopsie forgot this in venv
1 parent b85de3d commit 14a8903

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,16 @@ on:
66

77
jobs:
88
publish:
9-
runs-on: ${{ matrix.os }}
10-
strategy:
11-
matrix:
12-
os: [ubuntu-latest, macos-latest, windows-latest]
13-
python-version: [3.11, 3.12, 3.13]
9+
runs-on: ubuntu-latest
1410
environment: pypi
1511
steps:
1612
- name: Checkout
1713
uses: actions/[email protected]
1814

19-
- name: Setup Python ${{ matrix.python-version }}
15+
- name: Setup Python 3.13
2016
uses: actions/[email protected]
2117
with:
22-
python-version: "${{ matrix.python-version }}"
18+
python-version: "3.13"
2319

2420
- name: Install Poetry
2521
run: pipx install poetry --python $(which python)

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
os: [ubuntu-latestt]
11+
os: [ubuntu-latest]
1212
python-version: [3.11, 3.12, 3.13]
1313

1414
steps:
@@ -34,7 +34,7 @@ jobs:
3434
steps:
3535
- uses: actions/[email protected]
3636

37-
- name: Setup Python
37+
- name: Setup Python 3.13
3838
uses: actions/[email protected]
3939
with:
4040
python-version: "3.13" # use latest Python version
@@ -43,7 +43,7 @@ jobs:
4343
run: pipx install --python $(which python) tox
4444

4545
- name: Generate docs
46-
run: tox -e docs
46+
run: poetry tox -e docs
4747

4848
- name: Check if repo docs are up to date
4949
run: |

0 commit comments

Comments
 (0)