From 5d49eb8ed68059fca743f3f02a5a03771385f1a0 Mon Sep 17 00:00:00 2001 From: Josh Meyers Date: Mon, 15 Jul 2024 15:01:43 -0700 Subject: [PATCH] Try skipping py38 --- .github/workflows/ci.yml | 6 +++--- .github/workflows/wheels.yml | 8 ++++---- setup.py | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 682b988..238f165 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,16 +19,16 @@ jobs: strategy: matrix: os: [ ubuntu-latest ] - py: [3.8, 3.9, '3.10', 3.11, 3.12] + py: [3.9, '3.10', 3.11, 3.12] CC: [ gcc ] CXX: [ g++ ] include: - os: macos-latest - py: 3.8 + py: 3.9 CC: cc CXX: c++ - os: ubuntu-latest - py: 3.8 + py: 3.9 CC: clang CXX: clang++ steps: diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index f6c73a7..df22691 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -25,7 +25,7 @@ jobs: env: CIBW_ARCHS: "x86_64" CIBW_BUILD: "*manylinux*" - CIBW_SKIP: cp36* cp37* pp* + CIBW_SKIP: cp36* cp37* cp38* pp* CIBW_BUILD_VERBOSITY: 3 CIBW_BEFORE_BUILD: pip install -U pybind11-global CIBW_BEFORE_TEST: pip install -U pytest pytest-timeout pytest-cov pytest-xdist @@ -54,7 +54,7 @@ jobs: env: CIBW_ARCHS: "x86_64" CIBW_BUILD: "*musllinux*" - CIBW_SKIP: cp36* cp37* pp* + CIBW_SKIP: cp36* cp37* cp38* pp* CIBW_BUILD_VERBOSITY: 3 CIBW_BEFORE_BUILD: >- pip install -U pybind11-global && @@ -85,7 +85,7 @@ jobs: env: CIBW_ARCHS: "x86_64" CIBW_BUILD: "*macosx*" - CIBW_SKIP: cp36* cp37* pp* + CIBW_SKIP: cp36* cp37* cp38* pp* CIBW_BUILD_VERBOSITY: 3 CIBW_BEFORE_BUILD: >- pip install -U pybind11-global && @@ -121,7 +121,7 @@ jobs: env: CIBW_ARCHS: "arm64" CIBW_BUILD: "*macosx*" - CIBW_SKIP: cp36* cp37* pp* + CIBW_SKIP: cp36* cp37* cp38* pp* CIBW_BUILD_VERBOSITY: 3 CIBW_BEFORE_BUILD: >- pip install -U pybind11-global && diff --git a/setup.py b/setup.py index 396fcb5..717a9aa 100644 --- a/setup.py +++ b/setup.py @@ -64,7 +64,7 @@ def build_extension(self, ext): package_data={'batoid' : ['data/**/*']}, ext_modules=[CMakeExtension('batoid._batoid')], install_requires=['pybind11', 'numpy', 'pyyaml', 'scipy', 'galsim', 'matplotlib', 'astropy'], - python_requires='>=3.8', + python_requires='>=3.9', cmdclass=dict(build_ext=CMakeBuild), zip_safe=False, include_package_data=True,