From 60bacf4972d215bd64311dfea06a85e6362dfc7d Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Wed, 4 Sep 2024 12:58:53 -0700 Subject: [PATCH] Only test on Python >= 3.10 --- .github/workflows/tests.yml | 5 ++--- .github/workflows/wheel_tests_and_release.yml | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ce5578d9..fc345b23 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/setup-python@v1 with: - python-version: "3.8" + python-version: "3.10" - uses: actions/cache@v2 with: @@ -33,9 +33,8 @@ jobs: - name: Install dependencies & configure cesium run: | pip install --upgrade pip - pip install wheel numpy requests six python-dateutil pytest pytest-cov mock coverage + pip install wheel numpy cython requests six python-dateutil pytest pytest-cov mock coverage make install - pip install cython==0.29.23 python setup.py build_ext -i pip install -e . diff --git a/.github/workflows/wheel_tests_and_release.yml b/.github/workflows/wheel_tests_and_release.yml index 959d1d7c..56b8b7b5 100644 --- a/.github/workflows/wheel_tests_and_release.yml +++ b/.github/workflows/wheel_tests_and_release.yml @@ -24,7 +24,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - cibw_python: ["cp38-*", "cp39-*", "cp310-*", "cp311-*"] + cibw_python: ["cp310-*", "cp311-*", "cp312-*"] cibw_manylinux: [manylinux2014] cibw_arch: ["x86_64"] steps: