Skip to content

Commit

Permalink
gcc-13 -> gcc-14
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathf committed Nov 23, 2024
1 parent d2c95ab commit 1f49b6a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
python -m pip install -r build-requirements.txt
- name: "Install pyvroom"
env:
CXX: g++-14
run: |
# Because `pip install -e .` does not play nice with gcov, we go old school:
CFLAGS="-coverage" python setup.py build_ext --inplace
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,16 +83,16 @@ jobs:
uses: pypa/[email protected]
env:
MACOSX_DEPLOYMENT_TARGET: 13.0
CC: gcc-13
CXX: g++-13
CC: gcc-14
CXX: g++-14

- name: Build wheels
if: matrix.platform == 'macos-arm'
uses: pypa/[email protected]
env:
MACOSX_DEPLOYMENT_TARGET: 14.0
CC: gcc-13
CXX: g++-13
CC: gcc-14
CXX: g++-14

- name: Verify clean directory
run: git diff --exit-code
Expand Down

0 comments on commit 1f49b6a

Please sign in to comment.