Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@ jobs:
echo "DYLD_LIBRARY_PATH=$(brew --prefix libsodium)/lib" >> $GITHUB_ENV
if: runner.os == 'macOS'

# Workaround to avoid building pyobjc-core on macOS14 + Python 3.9. Support for Python 3.9 will be dropped
# once we support a more recent version of Python on functions.
- name: Avoid building pyobjc-core on macOS+Py3.9
if: runner.os == 'macOS' && matrix.python-version == '3.9'
run: |
echo "pyobjc-core<12" > /tmp/constraints.txt
echo "PIP_CONSTRAINT=/tmp/constraints.txt" >> $GITHUB_ENV

- name: "Install Hatch"
run: |
python3 -m venv /tmp/venv
Expand Down
Loading