Skip to content

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
RuABraun committed Feb 26, 2025
1 parent 5700030 commit 168328c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/publish-to-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags')
strategy:
matrix:
os: [ubuntu-latest, ubuntu-20.04, macos-13, macos-14]
os: [ubuntu-latest, ubuntu-20.04, macos-13, macos-14, macos-15]

steps:
- uses: actions/checkout@v4
Expand All @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build sdist
run: pipx run build --sdist
Expand All @@ -45,12 +45,11 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
# unpacks default artifact into dist/
# if `name: artifact` is omitted, the action will create extra parent dir
name: artifact
pattern: artifact-*
path: dist
merge-multiple: true

- uses: pypa/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import setuptools
import sys

__version__ = "1.0.0"
__version__ = "1.0.1"


class get_pybind_include(object):
Expand Down

0 comments on commit 168328c

Please sign in to comment.