Skip to content

Commit ebbc3f7

Browse files
authored
Merge pull request #332 from jonathangreen/bugfix/osx-workflow
Fix macosx CI workflow
2 parents 30763b6 + 911c537 commit ebbc3f7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/macosx.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: macos-latest
66
strategy:
77
matrix:
8-
python: [3.5, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
8+
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
99
static_deps: ["static", ""]
1010
steps:
1111
- uses: actions/checkout@v3
@@ -35,7 +35,8 @@ jobs:
3535
echo "LLVM_PROFILE_FILE=pyxmlsec.profraw" >> $GITHUB_ENV
3636
- name: Install test dependencies
3737
run: |
38-
pip install coverage --upgrade -r requirements-test.txt
38+
export PKG_CONFIG_PATH="$(brew --prefix)/opt/libxml2/lib/pkgconfig"
39+
pip install coverage --upgrade --no-binary=lxml -r requirements-test.txt
3940
pip install xmlsec --only-binary=xmlsec --no-index --find-links=dist/
4041
echo "PYXMLSEC_LIBFILE=$(python -c 'import xmlsec; print(xmlsec.__file__)')" >> $GITHUB_ENV
4142
- name: Run tests

0 commit comments

Comments
 (0)