Skip to content

Commit 75ce9ab

Browse files
committed
Add support for building lxml on pre-release Pythons.
Closes jaraco/skeleton#161
1 parent aee344d commit 75ce9ab

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,13 @@ jobs:
5656
continue-on-error: ${{ matrix.python == '3.14' }}
5757
steps:
5858
- uses: actions/checkout@v4
59+
- name: Install build dependencies
60+
# Install dependencies for building packages on pre-release Pythons
61+
# jaraco/skeleton#161
62+
if: matrix.python == '3.14' && matrix.platform == 'ubuntu-latest'
63+
run: |
64+
sudo apt update
65+
sudo apt install -y libxml2-dev libxslt-dev
5966
- name: Setup Python
6067
uses: actions/setup-python@v4
6168
with:

0 commit comments

Comments
 (0)