Skip to content

Commit

Permalink
Try skipping py38
Browse files Browse the repository at this point in the history
  • Loading branch information
jmeyers314 committed Jul 15, 2024
1 parent bce8591 commit 5d49eb8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 &&
Expand Down Expand Up @@ -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 &&
Expand Down Expand Up @@ -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 &&
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 5d49eb8

Please sign in to comment.