Skip to content

Commit

Permalink
bump minimum py to 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jmeyers314 committed Aug 16, 2023
1 parent 9b98d01 commit a47682b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 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.7, 3.8, 3.9, '3.10', 3.11]
py: [3.8, 3.9, '3.10', 3.11]
CC: [ gcc ]
CXX: [ g++ ]
include:
- os: macos-latest
py: 3.7
py: 3.8
CC: cc
CXX: c++
- os: ubuntu-latest
py: 3.7
py: 3.8
CC: clang
CXX: clang++
steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: pypa/[email protected]
env:
CIBW_BUILD: "*manylinux*"
CIBW_SKIP: cp36* pp*
CIBW_SKIP: cp36* cp37* pp*
CIBW_BUILD_VERBOSITY: 3
CIBW_BEFORE_BUILD: pip install -U pybind11-global
- uses: actions/upload-artifact@v3
Expand All @@ -40,7 +40,7 @@ jobs:
uses: pypa/[email protected]
env:
CIBW_BUILD: "*musllinux*"
CIBW_SKIP: cp36* pp*
CIBW_SKIP: cp36* cp37* pp*
CIBW_BUILD_VERBOSITY: 3
CIBW_BEFORE_BUILD: pip install -U pybind11-global
- uses: actions/upload-artifact@v3
Expand All @@ -60,7 +60,7 @@ jobs:
uses: pypa/[email protected]
env:
CIBW_BUILD: "*macosx*"
CIBW_SKIP: cp36* pp*
CIBW_SKIP: cp36* cp37* pp*
CIBW_BUILD_VERBOSITY: 3
CIBW_BEFORE_BUILD: pip install -U pybind11-global
CIBW_BEFORE_TEST: pip install -U -r test_requirements.txt
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wheeltest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: pypa/[email protected]
env:
CIBW_BUILD: "*manylinux*"
CIBW_SKIP: cp36* pp*
CIBW_SKIP: cp36* cp37* pp*
CIBW_BUILD_VERBOSITY: 3
CIBW_BEFORE_BUILD: pip install -U pybind11-global
- uses: actions/upload-artifact@v3
Expand All @@ -37,7 +37,7 @@ jobs:
uses: pypa/[email protected]
env:
CIBW_BUILD: "*musllinux*"
CIBW_SKIP: cp36* pp*
CIBW_SKIP: cp36* cp37* pp*
CIBW_BUILD_VERBOSITY: 3
CIBW_BEFORE_BUILD: pip install -U pybind11-global
- uses: actions/upload-artifact@v3
Expand All @@ -57,7 +57,7 @@ jobs:
uses: pypa/[email protected]
env:
CIBW_BUILD: "*macosx*"
CIBW_SKIP: cp36* pp*
CIBW_SKIP: cp36* cp37* pp*
CIBW_BUILD_VERBOSITY: 3
CIBW_BEFORE_BUILD: pip install -U pybind11-global && brew install libomp
CIBW_BEFORE_TEST: pip install -U -r test_requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ https://jmeyers314.github.io/batoid/overview.html
Requirements
============

Batoid is known to work on MacOS and linux, using Python version 3.7+, and
Batoid is known to work on MacOS and linux, using Python version 3.8+, and
either the clang or gcc compiler with support for c++14.

Installation
Expand Down

0 comments on commit a47682b

Please sign in to comment.