From 972c0009ac457f95a3cf75650e990d21c928322d Mon Sep 17 00:00:00 2001 From: rdb Date: Sat, 14 Oct 2023 11:28:05 +0200 Subject: [PATCH] workflow: Add setuptools as requirement when testing Python 3.12 --- .github/workflows/ci.yml | 2 +- tests/requirements.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64978eaf1c..f5c571310a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,7 +46,7 @@ jobs: if: matrix.os != 'windows-2019' shell: bash run: | - python -m pip install pytest + python -m pip install pytest setuptools PYTHONPATH=built LD_LIBRARY_PATH=built/lib DYLD_LIBRARY_PATH=built/lib python -m pytest - name: Set up Python 3.11 diff --git a/tests/requirements.txt b/tests/requirements.txt index 3bc9b3f390..1019c223b6 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -1,2 +1,3 @@ pytest==3.2.0 panda3d +setuptools