From 3173114f2383adad932d9c2cf944f30e79c597e8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Mar 2025 02:34:26 +0000 Subject: [PATCH 1/2] Bump pypa/cibuildwheel from 2.22.0 to 2.23.0 Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.22.0 to 2.23.0. - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](https://github.com/pypa/cibuildwheel/compare/v2.22.0...v2.23.0) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/cibuildwheel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index 88d4a4d..44481fe 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -44,7 +44,7 @@ jobs: ref: ${{ inputs.ref || '' }} - name: Build wheels - uses: pypa/cibuildwheel@v2.22.0 + uses: pypa/cibuildwheel@v2.23.0 env: CIBW_BUILD: ${{ inputs.build || 'cp*' }} CIBW_SKIP: ${{ inputs.skip || '' }} From 57b3523548d49388d7b1051dc896b6953e669f68 Mon Sep 17 00:00:00 2001 From: Nicolas Tessore Date: Mon, 3 Mar 2025 09:39:33 +0000 Subject: [PATCH 2/2] remove py37 --- .github/workflows/tests.yml | 4 ---- pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f2b5114..7d7f9b0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,16 +19,12 @@ jobs: - macos-latest - windows-latest python-version: - - '3.7' - '3.8' - '3.9' - '3.10' - '3.11' - '3.12' - '3.13' - exclude: - - runs-on: macos-latest - python-version: '3.7' runs-on: ${{ matrix.runs-on }} steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 39dfb6f..b036e4c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ classifiers = [ "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", ] -requires-python = ">=3.7" +requires-python = ">=3.8" dependencies = [ "numpy", ]