summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorAndreas Källberg <anka.213@gmail.com>2024-10-23 15:47:14 +0200
committerGitHub <noreply@github.com>2024-10-23 15:47:14 +0200
commit5eab0a626d5a047b53874eb9adbfb09dff812b6c (patch)
tree23e242e7a3c30d21fa8cd0a7ab60f1f4239254f4 /.github/workflows
parentfc614cd48ee60ceeda212a7f47f18e1cb69c72e3 (diff)
add glibtoolize dependency for mac CI
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build-python-package.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/build-python-package.yml b/.github/workflows/build-python-package.yml
index c18709c69..bbc4d1dcc 100644
--- a/.github/workflows/build-python-package.yml
+++ b/.github/workflows/build-python-package.yml
@@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v1
- - uses: actions/setup-python@v5.2.0
+ - uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.x'
@@ -31,6 +31,7 @@ jobs:
if: startsWith(matrix.os, 'macos')
run: |
brew install automake
+ brew install libtool
- name: Build wheels on Linux
if: startsWith(matrix.os, 'macos') != true
@@ -64,7 +65,7 @@ jobs:
- name: Build sdist
run: cd src/runtime/python && python setup.py sdist
- - uses: actions/upload-artifact@v2
+ - uses: actions/upload-artifact@v4
with:
path: ./src/runtime/python/dist/*.tar.gz
@@ -78,7 +79,7 @@ jobs:
- uses: actions/checkout@v2
- name: Set up Python
- uses: actions/setup-python@v5.2.0
+ uses: actions/setup-python@v5
with:
python-version: '3.x'