-
Notifications
You must be signed in to change notification settings - Fork 0
Updating xarray package #86
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
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -12,7 +12,7 @@ bitsea = {git = "https://github.com/inogs/bit.sea.git", rev = "master"} | |||||
| pyyaml = "^6.0.2" | ||||||
| numpy = "^2.1.1" | ||||||
| matplotlib = "^3.10.0" | ||||||
| xarray = "^2025.1.1" | ||||||
| xarray = ">=2025.1.1" | ||||||
| scipy = "^1.15.2" | ||||||
| mitgcmutils = ">0.2.1" | ||||||
| pydap = "^3.5.8" | ||||||
|
|
@@ -21,9 +21,9 @@ geographiclib = "^2.1" | |||||
| numba = ">0.62.1" | ||||||
|
|
||||||
| [tool.poetry.group.dev.dependencies] | ||||||
| pre-commit = "^3.8.0" | ||||||
| deptry = "^0.21.2" | ||||||
| pytest = "^8.3.4" | ||||||
| pre-commit = "^4.5" | ||||||
| deptry = ">0.21.2" | ||||||
|
||||||
| deptry = ">0.21.2" | |
| deptry = ">=0.21.2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
xarrayis now specified as a lower-bound-only constraint (">=") which means users installing from sdist/wheel can end up with arbitrarily newer xarray releases than the one validated in this repo (the lock already resolves to 2026.4.0). If you want the update but still want predictable installs, consider using a compatible range (e.g., caret) or adding an explicit upper bound.