Skip to content

Commit

Permalink
Bump pypa/cibuildwheel from 2.14.1 to 2.16.5 (#221)
Browse files Browse the repository at this point in the history
* Bump pypa/cibuildwheel from 2.14.1 to 2.16.5

Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.14.1 to 2.16.5.
- [Release notes](https://github.com/pypa/cibuildwheel/releases)
- [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md)
- [Commits](pypa/cibuildwheel@v2.14.1...v2.16.5)

---
updated-dependencies:
- dependency-name: pypa/cibuildwheel
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Drop python3.6, add python3.12

* Update cibw test skip

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Nick Smith <[email protected]>
  • Loading branch information
dependabot[bot] and nsmith- authored Feb 2, 2024
1 parent 9b96ada commit 767029c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.11"]
python-version: ["3.7", "3.11", "3.12"]
runs-on: [ubuntu-latest, macos-latest, windows-latest]

include:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
fetch-tags: true
fetch-depth: 0

- uses: pypa/cibuildwheel@v2.14.1
- uses: pypa/cibuildwheel@v2.16.5
env:
MACOSX_DEPLOYMENT_TARGET: 10.14

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ write_to = "src/correctionlib/version.py"
skip = ["pp*-*"]
test-extras = "test"
test-command = "python -m pytest {package}/tests"
# update skip when numpy wheels become available
test-skip = ["pp*-*", "*-musllinux_*", "cp310-win32", "cp311-win32", "cp38-manylinux_i686", "cp39-manylinux_i686", "cp310-manylinux_i686", "cp311-manylinux_i686"]
# When cpython 3.7 is dropped we can ignore i686 (numpy not built)
test-skip = ["pp*-*", "*-musllinux_*", "cp3{10,11,12}-win32", "cp3{8,9,10,11,12}-manylinux_i686"]
manylinux-x86_64-image = "manylinux2014"
manylinux-i686-image = "manylinux2014"

Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@ classifiers =
Development Status :: 5 - Production/Stable

[options]
python_requires = >=3.6
python_requires = >=3.7
install_requires =
numpy >=1.13.3
typing; python_version<"3.5"
typing-extensions;python_version<"3.8"
dataclasses;python_version<"3.7"
pydantic >=2
Expand Down

0 comments on commit 767029c

Please sign in to comment.