summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2021-12-10 10:51:58 +0100
committerStefan Behnel <stefan_ml@behnel.de>2021-12-10 20:23:20 +0100
commitcc1028fda607eb264c94d6535f2639138a8297c7 (patch)
tree9950c7976b703c03b2315caf20446a2e70e82462
parent97bf85d31c0338314b7545c1303508ded9d51379 (diff)
downloadpython-lxml-cc1028fda607eb264c94d6535f2639138a8297c7.tar.gz
Install automake and libtool in macOS build to be able to install the latest non-release libxml2.
-rw-r--r--.github/workflows/wheels.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml
index cd9da262..cad0c9f5 100644
--- a/.github/workflows/wheels.yml
+++ b/.github/workflows/wheels.yml
@@ -128,6 +128,12 @@ jobs:
with:
python-version: ${{ matrix.python_version }}
+ - name: Install MacOS dependencies
+ if: startsWith(matrix.os, 'mac')
+ run: |
+ brew install automake libtool
+ ln -s /usr/local/bin/glibtoolize /usr/local/bin/libtoolize
+
- name: Install dependencies
run: python -m pip install setuptools wheel -r requirements.txt