From 446ea1d3423640e39a512cc5aa291afc495a045d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Nov 2024 19:28:33 -0500 Subject: [PATCH 1/2] Bump pypa/cibuildwheel from 2.21.3 to 2.22.0 in the actions group (#230) * Bump pypa/cibuildwheel from 2.21.3 to 2.22.0 in the actions group Bumps the actions group with 1 update: [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel). Updates `pypa/cibuildwheel` from 2.21.3 to 2.22.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.21.3...v2.22.0) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] * match the `cibuildwheel` version to 2.22.0 --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Alex Lancaster --- .github/workflows/build_wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 735c1366..b0c12094 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -128,7 +128,7 @@ jobs: - uses: actions/checkout@v4 - name: Install cibuildwheel # Nb. keep cibuildwheel version pin consistent with job below - run: pipx install cibuildwheel==2.21.3 + run: pipx install cibuildwheel==2.22.0 - id: set-matrix run: | echo "CI_ONLY" $CI_ONLY @@ -211,7 +211,7 @@ jobs: python -m pip install git+https://github.com/alexlancaster/cffconvert.git@combine_features#egg=cffconvert python src/PyPop/citation.py - name: Build and test wheels - uses: pypa/cibuildwheel@v2.21.3 + uses: pypa/cibuildwheel@v2.22.0 env: # FIXME: only run the slow tests when doing regular pushes, or manual - not for PRs CIBW_TEST_COMMAND: "pytest -v {package}/tests ${{ (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && '--runslow' || '' }}" From 9b0bae71388010917a1fa221908cd68795057ef7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 21:09:13 -0500 Subject: [PATCH 2/2] Update numpy requirement from <=2.1.3 to <=2.2.0 (#231) Updates the requirements on [numpy](https://github.com/numpy/numpy) to permit the latest version. - [Release notes](https://github.com/numpy/numpy/releases) - [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst) - [Commits](https://github.com/numpy/numpy/compare/v0.2.0...v2.2.0) --- updated-dependencies: - dependency-name: numpy dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3097aff5..6f279344 100644 --- a/setup.py +++ b/setup.py @@ -280,7 +280,7 @@ def run(self): packages = ["PyPop", "PyPop.xslt"], package_data = {"PyPop.xslt": xslt_data_file_paths, "PyPop": citation_data_file_paths}, - install_requires = ["numpy <= 2.1.3", + install_requires = ["numpy <= 2.2.0", "lxml <= 5.3.0", "importlib-resources; python_version <= '3.8'", "importlib-metadata; python_version <= '3.8'"],