Skip to content

Commit

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

Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.14.1 to 2.15.0.
- [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.15.0)

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

Signed-off-by: dependabot[bot] <support@github.com>

* use prerelease numpy >= 1.26b1 for Python versions 3.12 and later: numpy 1.25 not built for Python 3.12

* disable cp312 on Linux for the time being

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alex Lancaster <alexlancaster@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and alexlancaster authored Aug 20, 2023
1 parent 6ef00da commit e7f836c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
fetch-depth: 0

- name: Build and test wheels
uses: pypa/cibuildwheel@v2.14.1
uses: pypa/cibuildwheel@v2.15.0
with:
package-dir: .
output-dir: wheelhouse
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.cibuildwheel]
skip = ["*-win32", "*_i686", "*-musllinux_*", "pp37-win_*", "pp310*"] # skip 32-bit builds and musllinux
skip = ["*-win32", "*_i686", "*-musllinux_*", "pp37-win_*", "pp310*", "cp312-*linux*"] # skip certain builds, including 32-bit, musllinux and others
test-extras = ["test"]
test-command = "pytest -s -v {package}/tests"

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,8 @@ def path_to_src(source_path_list):
package_dir = {"": src_dir},
packages = ["PyPop", "PyPop.xslt"],
package_data={"PyPop.xslt": data_file_paths},
install_requires = ["numpy", "lxml <= 4.9.3", "psutil", "importlib-resources; python_version <= '3.8'", "importlib-metadata; python_version <= '3.8'"],
install_requires = ["numpy <= 1.25.2; python_version <= '3.11'", "numpy >= 1.26b1; python_version > '3.11'", "lxml <= 4.9.3", "psutil",
"importlib-resources; python_version <= '3.8'", "importlib-metadata; python_version <= '3.8'"],
extras_require={
"test": ['pytest']
},
Expand Down

0 comments on commit e7f836c

Please sign in to comment.