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 9a0391e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
test:
name: test
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand All @@ -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/cibuildwheel@v2.19.2
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/cibuildwheel@v2.19.2
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
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
requires = [
"setuptools>=45",
"wheel",
"setuptools_scm>=6.2",
"setuptools_scm_git_archive",
"pybind11>=2.8.0",
]

Expand Down

0 comments on commit 9a0391e

Please sign in to comment.