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 16aa656 commit 0d899c9Copy full SHA for 0d899c9
.github/workflows/ci.yml
@@ -45,11 +45,18 @@ jobs:
45
uses: actions/setup-python@v4
46
with:
47
python-version: ${{ matrix.python-version }}
48
-
+
49
- name: Install bzip2 on macOS
50
if: matrix.os == 'macos'
51
run: brew install bzip2
52
53
54
+ - name: Set environment variables
55
+ if: matrix.os == 'macos'
56
+ run: |
57
+ export LDFLAGS="-L/usr/local/opt/bzip2/lib"
58
+ export CPPFLAGS="-I/usr/local/opt/bzip2/include"
59
60
- run: |
61
pip install -r requirements/pyproject.txt && pip install -r requirements/testing.txt
62
0 commit comments