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' || '' }}" diff --git a/setup.py b/setup.py index 3159a627..436557c1 100644 --- a/setup.py +++ b/setup.py @@ -256,7 +256,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", "SciPy <= 1.14.1", "lxml <= 5.3.0", "importlib-resources; python_version <= '3.8'",