From b695910c8eff7bdf87618ac309ad7d768610ace9 Mon Sep 17 00:00:00 2001 From: Giordon Stark Date: Tue, 10 Oct 2023 14:00:28 -0700 Subject: [PATCH 1/4] open up to allowing 3.12 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 4a45c6b..a167a7f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,6 +25,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering", ] dependencies = [ From 274c11303635dfe4937c1116382a7affe7ab7acd Mon Sep 17 00:00:00 2001 From: Giordon Stark Date: Tue, 10 Oct 2023 14:17:57 -0700 Subject: [PATCH 2/4] add 3.12 in the checks --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e07d367..cd33a45 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.10", "3.11"] + python-version: ["3.7", "3.10", "3.11", "3.12"] sys: - { os: ubuntu-latest, shell: bash } - { os: macos-latest, shell: bash } From 2afe832662bd5fc355b6732bb111e261a3648594 Mon Sep 17 00:00:00 2001 From: Giordon Stark Date: Tue, 10 Oct 2023 14:20:48 -0700 Subject: [PATCH 3/4] bump to 2.16.2 cibuildwheel --- .cirrus.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index ce6a7fd..95f5b53 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -1,7 +1,7 @@ build_and_store_wheels: &BUILD_AND_STORE_WHEELS only_if: $CIRRUS_BRANCH == 'main' || $CIRRUS_TAG != '' || $CIRRUS_PR != '' install_cibuildwheel_script: - - python -m pip install cibuildwheel==2.12.3 + - python -m pip install cibuildwheel==2.16.2 run_cibuildwheel_script: - cibuildwheel binary_artifacts: From 999f080dc60b55ca58e88443c3ac3c67ba73eff1 Mon Sep 17 00:00:00 2001 From: Giordon Stark Date: Thu, 19 Oct 2023 13:30:14 -0700 Subject: [PATCH 4/4] fix up ci now --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd33a45..6c2cfee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,14 +36,14 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.10", "3.11", "3.12"] + python-version: ["3.7", "3.12"] sys: - { os: ubuntu-latest, shell: bash } - { os: macos-latest, shell: bash } experimental: [false] - exclude: - - sys: { os: macos-latest, shell: bash } - python-version: 3.11 + exclude: [] + # - sys: { os: macos-latest, shell: bash } + # python-version: 3.12 include: - python-version: pypy-3.7