Skip to content

Commit 32e25b4

Browse files
committed
Fix deployment to PyPI
1 parent 3356459 commit 32e25b4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
strategy:
4141
max-parallel: 1
4242
matrix:
43-
python-version: ["3.11", "3.12"]
43+
python-version: ["3.11"]
4444
steps:
4545
- uses: actions/checkout@v4
4646
with:
@@ -98,7 +98,7 @@ jobs:
9898
strategy:
9999
max-parallel: 1
100100
matrix:
101-
python-version: ["3.11", "3.12"]
101+
python-version: ["3.11"]
102102
steps:
103103
- uses: actions/checkout@v4
104104
with:
@@ -156,4 +156,4 @@ jobs:
156156
run: iop4 --list-local
157157

158158
- name: Build docs
159-
run: make docs-sphinx
159+
run: make docs-sphinx

.github/workflows/deploy_pypi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
pip install -U build
2525
python -m build
2626
- name: Store the distribution packages
27-
uses: actions/upload-artifact@v3
27+
uses: actions/upload-artifact@v4
2828
with:
2929
name: python-package-distributions
3030
path: dist/
@@ -42,9 +42,9 @@ jobs:
4242
id-token: write
4343
steps:
4444
- name: Download all the dists
45-
uses: actions/download-artifact@v3
45+
uses: actions/download-artifact@v4
4646
with:
4747
name: python-package-distributions
4848
path: dist/
4949
- name: Publish distribution to PyPI
50-
uses: pypa/gh-action-pypi-publish@release/v1
50+
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)