Skip to content

Commit

Permalink
Build mac CI on python 3.12 (#623)
Browse files Browse the repository at this point in the history
Build Mac on Python 3.12 in actions to fix build
It upgraded to Python 3.13 by default which is not yet supported by our dependencies.
  • Loading branch information
matthew-lidar authored Oct 23, 2024
1 parent 1aeff94 commit f21d7c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,10 +106,10 @@ jobs:
- name: install deps
run: brew install cmake pkg-config jsoncpp eigen curl libtins glfw glew spdlog flatbuffers
- name: install python-deps
run: pip3 install pytest pytest-xdist --break-system-packages
run: python3.12 -m pip install pytest pytest-xdist --break-system-packages
- name: build python
run: cd python && python3 -m pip install -e .[test] --break-system-packages
run: cd python && python3.12 -m pip install -e .[test] --break-system-packages
- name: set netparams
run: sudo sysctl -w net.inet.udp.maxdgram=65535
- name: run tests
run: cd python/tests && pytest -n3
run: cd python/tests && python3.12 -m pytest -n3

0 comments on commit f21d7c7

Please sign in to comment.