From e1ee36e20c3bd9623be72dbffa20dcfc497f8a91 Mon Sep 17 00:00:00 2001 From: Ben Cho Date: Sun, 22 Oct 2023 21:07:42 -0600 Subject: [PATCH] remove py 3.12 due to numba dep --- .github/workflows/ci.yml | 2 +- .github/workflows/python-publish.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e25c966..feaa0e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"] + python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index b321b79..cc05e35 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -22,7 +22,7 @@ jobs: - name: build manylinux wheels uses: RalfG/python-wheels-manylinux-build@v0.6.0 #-manylinux2014_x86_64 with: - python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311 cp312-cp312' + python-versions: 'cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311' build-requirements: 'setuptools wheel twine cython numpy cryptography' system-packages: 'libffi libffi-devel' # pre-build-command: 'sh pre-build-script.sh' @@ -42,7 +42,7 @@ jobs: strategy: matrix: os: [windows-latest, macos-latest] - python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"] + python-version: [3.7, 3.8, 3.9, "3.10", "3.11"] steps: - uses: actions/checkout@v2 - name: Set up Python