Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump pypa/cibuildwheel from 2.14.1 to 2.19.1 #4

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build-and-publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ jobs:
echo "[build]`ncompiler=mingw32" | Out-File -Encoding ASCII ~/pydistutils.cfg

- name: Build wheels
uses: pypa/cibuildwheel@v2.14.1
uses: pypa/cibuildwheel@v2.19.1
env:
# Disable building for PyPy and 32bit.
CIBW_SKIP: pp* *-win32 *-manylinux_i686
# Fix error for python 3.11 on macOS
CIBW_ENVIRONMENT_MACOS: SETUPTOOLS_USE_DISTUTILS=stdlib
# Package the DLL dependencies in the wheel for windows (done by default for the other platforms).
# [macOS] Fix error for python 3.11 on macOS; set target macOS version to ensure compatibility
CIBW_ENVIRONMENT_MACOS: SETUPTOOLS_USE_DISTUTILS=stdlib MACOSX_DEPLOYMENT_TARGET=10.13
# [Windows] Package the DLL dependencies in the wheel (done by default for the other platforms).
# delvewheel cannot mangle the libraries, stripping does not work.
CIBW_BEFORE_BUILD_WINDOWS: pip install delvewheel
CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel show {wheel} && delvewheel repair -w {dest_dir} {wheel} --no-mangle-all"
Expand Down
1 change: 1 addition & 0 deletions tests/grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
assert np.allclose(tide_e[::80, ::100], tide_e_80_100)
assert np.allclose(tide_n[::80, ::100], tide_n_80_100)
assert np.allclose(tide_u[::80, ::100], tide_u_80_100)
print('Pass.')

# plot
out_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), 'pic'))
Expand Down
1 change: 1 addition & 0 deletions tests/point.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
assert np.allclose(tide_e[::8000], tide_e_8000)
assert np.allclose(tide_n[::8000], tide_n_8000)
assert np.allclose(tide_u[::8000], tide_u_8000)
print('Pass.')

# plot
out_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), 'pic'))
Expand Down
Loading