From e1053e25cbad979fb112eb7f7ed920d7c7523db6 Mon Sep 17 00:00:00 2001 From: David Braun <2096055+DBraun@users.noreply.github.com> Date: Fri, 6 Sep 2024 18:11:29 -0400 Subject: [PATCH] disable python 3.8 and 3.9 builds --- .github/workflows/all.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/all.yml b/.github/workflows/all.yml index cd1d15a4..42617578 100644 --- a/.github/workflows/all.yml +++ b/.github/workflows/all.yml @@ -14,8 +14,8 @@ jobs: # fail-fast: false matrix: include: - - { python-version: "3.8", pythonLibPath: "/opt/python/cp39-cp38/lib", pythonInclude: "/opt/python/cp38-cp38/include/python3.8", cibwbuild: "cp38-manylinux_x86_64"} - - { python-version: "3.9", pythonLibPath: "/opt/python/cp39-cp39/lib", pythonInclude: "/opt/python/cp39-cp39/include/python3.9", cibwbuild: "cp39-manylinux_x86_64"} + # - { python-version: "3.8", pythonLibPath: "/opt/python/cp39-cp38/lib", pythonInclude: "/opt/python/cp38-cp38/include/python3.8", cibwbuild: "cp38-manylinux_x86_64"} + # - { python-version: "3.9", pythonLibPath: "/opt/python/cp39-cp39/lib", pythonInclude: "/opt/python/cp39-cp39/include/python3.9", cibwbuild: "cp39-manylinux_x86_64"} - { python-version: "3.10", pythonLibPath: "/opt/python/cp310-cp310/lib", pythonInclude: "/opt/python/cp310-cp310/include/python3.10", cibwbuild: "cp310-manylinux_x86_64"} - { python-version: "3.11", pythonLibPath: "/opt/python/cp311-cp311/lib", pythonInclude: "/opt/python/cp311-cp311/include/python3.11", cibwbuild: "cp311-manylinux_x86_64"} - { python-version: "3.12", pythonLibPath: "/opt/python/cp312-cp312/lib", pythonInclude: "/opt/python/cp312-cp312/include/python3.12", cibwbuild: "cp312-manylinux_x86_64"} @@ -85,8 +85,8 @@ jobs: # fail-fast: false matrix: include: - - { os: windows-2022, python-version: "3.8", CIBW-BUILD: "cp38*"} - - { os: windows-2022, python-version: "3.9", CIBW-BUILD: "cp39*"} + # - { os: windows-2022, python-version: "3.8", CIBW-BUILD: "cp38*"} + # - { os: windows-2022, python-version: "3.9", CIBW-BUILD: "cp39*"} - { os: windows-2022, python-version: "3.10", CIBW-BUILD: "cp310*"} - { os: windows-2022, python-version: "3.11", CIBW-BUILD: "cp311*"} - { os: windows-2022, python-version: "3.12", CIBW-BUILD: "cp312*"} @@ -149,7 +149,7 @@ jobs: path: ./wheelhouse/*.whl - name: "Build docs for GitHub pages" - if: ${{ matrix.python-version == '3.9' && github.event_name == 'release' && github.event.action == 'published' }} + if: ${{ matrix.python-version == '3.10' && github.event_name == 'release' && github.event.action == 'published' }} shell: cmd run: | pip install -U sphinx @@ -157,7 +157,7 @@ jobs: - name: Deploy docs uses: peaceiris/actions-gh-pages@v4 # todo: make condition for being on main branch - if: ${{ matrix.python-version == '3.9' && github.event_name == 'release' && github.event.action == 'published' }} + if: ${{ matrix.python-version == '3.10' && github.event_name == 'release' && github.event.action == 'published' }} with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./docs/_build/html @@ -168,11 +168,11 @@ jobs: # fail-fast: false matrix: include: - - { os: macos-12, build: cp39-macosx_x86_64, python-version: "3.9", ARCHS: "x86_64" } + # - { os: macos-12, build: cp39-macosx_x86_64, python-version: "3.9", ARCHS: "x86_64" } - { os: macos-12, build: cp310-macosx_x86_64, python-version: "3.10", ARCHS: "x86_64" } - { os: macos-12, build: cp311-macosx_x86_64, python-version: "3.11", ARCHS: "x86_64" } - { os: macos-12, build: cp312-macosx_x86_64, python-version: "3.12", ARCHS: "x86_64" } - - { os: macos-12, build: cp39-macosx_arm64, python-version: "3.9", ARCHS: "arm64" } + # - { os: macos-12, build: cp39-macosx_arm64, python-version: "3.9", ARCHS: "arm64" } - { os: macos-12, build: cp310-macosx_arm64, python-version: "3.10", ARCHS: "arm64" } - { os: macos-12, build: cp311-macosx_arm64, python-version: "3.11", ARCHS: "arm64" } - { os: macos-12, build: cp312-macosx_arm64, python-version: "3.12", ARCHS: "arm64" }