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

fix(ci): works with new version numpy #3145

Merged
merged 1 commit into from
Nov 28, 2024
Merged
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
4 changes: 3 additions & 1 deletion .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@ jobs:
- "3.10"
- "3.11"
os:
- macos-13 # TODO: macos-latest is switched to arm64, we need to adjust ut for arm64 macos. For now, we use macos-13 as a workaround.
#- macos-13
# TODO: macos-latest is switched to arm64, we need to adjust ut for arm64 macos. For now, we use macos-13 as a workaround.
# TODO: codecov always fail on macOS, temporarily disable
- ubuntu-latest
runs-on: ${{ matrix.os }}
defaults:
Expand Down
1 change: 0 additions & 1 deletion client/tests/sdk/test_dataset_sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -2033,7 +2033,6 @@ def test_compound_data(self) -> None:
td["map_list"]["a"]["a"][0][0], numpy.array(b"", dtype=numpy.bytes_)
)

@pytest.mark.filterwarnings("ignore::numpy.VisibleDeprecationWarning")
def test_inspect_exceptions(self) -> None:
import starwhale.integrations.tensorflow.dataset as tf_dataset

Expand Down
Loading