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:25:16 +0100
commitfd0d4713f258f77e57d289415001d5b9ce04ce53 (patch)
tree1423f31a283f4ece279e84502f54164501a2b500
parentf2330237440df7e8f39c3ad1b1aa8852be3b27c0 (diff)
downloadpython-lxml-fd0d4713f258f77e57d289415001d5b9ce04ce53.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 bfd8e9ef..5615b60c 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