We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aee344d commit 75ce9abCopy full SHA for 75ce9ab
.github/workflows/main.yml
@@ -56,6 +56,13 @@ jobs:
56
continue-on-error: ${{ matrix.python == '3.14' }}
57
steps:
58
- 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
66
- name: Setup Python
67
uses: actions/setup-python@v4
68
with:
0 commit comments