From 7b8c589b113f11a4bbca179d53c9817c2cb1d9c7 Mon Sep 17 00:00:00 2001 From: Matthew Bries Date: Wed, 23 Oct 2024 11:07:11 -0700 Subject: [PATCH] Build mac CI on python 3.12 --- .github/workflows/build_test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_test.yaml b/.github/workflows/build_test.yaml index 2f0fd06b..3137b588 100644 --- a/.github/workflows/build_test.yaml +++ b/.github/workflows/build_test.yaml @@ -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 pip3 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