diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f303d974..c5577e0b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 62d6d2f2..25adbeba 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -20,7 +20,7 @@ jobs: uses: pypa/cibuildwheel@v2.9.0 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 @@ -40,7 +40,7 @@ jobs: uses: pypa/cibuildwheel@v2.9.0 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 @@ -60,7 +60,7 @@ jobs: uses: pypa/cibuildwheel@v2.9.0 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 diff --git a/.github/workflows/wheeltest.yml b/.github/workflows/wheeltest.yml index 21dfe777..0769bf26 100644 --- a/.github/workflows/wheeltest.yml +++ b/.github/workflows/wheeltest.yml @@ -17,7 +17,7 @@ jobs: uses: pypa/cibuildwheel@v2.11.3 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 @@ -37,7 +37,7 @@ jobs: uses: pypa/cibuildwheel@v2.11.3 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 @@ -57,7 +57,7 @@ jobs: uses: pypa/cibuildwheel@v2.11.3 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 diff --git a/README.rst b/README.rst index dd294287..0b81547c 100644 --- a/README.rst +++ b/README.rst @@ -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