-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
update dependencies; drop python 3.10 #10438
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
Changes from all commits
08fe5d4
742d242
e9bc539
1bdcc64
1b29658
9a7753a
2fad196
4572806
3d7d9a1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ dependencies: | |
- ncdata | ||
- netcdf4 | ||
- numba | ||
- numpy>=2 | ||
- numpy>=2.2 | ||
- packaging | ||
- pandas | ||
- pooch | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ dependencies: | |
- numba | ||
- numbagg | ||
- numexpr | ||
- numpy>=2 | ||
- numpy>=2.2 | ||
- opt_einsum | ||
- packaging | ||
- pandas | ||
|
Unchanged files with check annotations Beta
# otherwise numpy unsigned ints will silently cast to the signed counterpart | ||
fill_value = fill_value.item() | ||
# passes if provided fill value fits in encoded on-disk type | ||
new_fill = encoded_dtype.type(fill_value) | ||
Check warning on line 244 in xarray/coding/variables.py
|
||
except OverflowError: | ||
encoded_kind_str = "signed" if encoded_dtype.kind == "i" else "unsigned" | ||
warnings.warn( |
def test_cmp_local_file(self) -> None: | ||
with self.create_datasets() as (actual, expected): | ||
assert_equal(actual, expected) | ||
Check failure on line 5448 in xarray/tests/test_backends.py
|
||
# global attributes should be global attributes on the dataset | ||
assert "NC_GLOBAL" not in actual.attrs | ||
@requires_dask | ||
def test_dask(self) -> None: | ||
with self.create_datasets(chunks={"j": 2}) as (actual, expected): | ||
assert_equal(actual, expected) | ||
Check failure on line 5495 in xarray/tests/test_backends.py
|
||
@network |
Uh oh!
There was an error while loading. Please reload this page.