Skip to content

Commit c229a79

Browse files
committed
fix pinned versions of dependent packages
1 parent dee9505 commit c229a79

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Changes in 0.2.0
2+
3+
- Ensuring compatibility with latest `copernicusmarine` requirements
4+
15
## Changes in 0.1.6
26

37
- Updated `pyproject.toml` file; package name changed from `xcube-cmems`

environment.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ dependencies:
77
# Required
88
- copernicusmarine >=2.1.1
99
- xcube >=1.9.1
10-
- numpy <2.0.0 # to avoid inconsistent results with copernicusmarine package
11-
- xarray >=2024.7.0 # to avoid inconsistent results with copernicusmarine package
10+
- numpy >2.0.0 # to avoid inconsistent results with copernicusmarine package
11+
- xarray <2024.7.0 # to avoid inconsistent results with copernicusmarine package
1212
- pandas
1313
# for testing
1414
- black
@@ -19,4 +19,3 @@ dependencies:
1919

2020

2121

22-

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ requires-python = ">=3.10"
2222
dependencies = [
2323
# Todo: add xcube-core when issue with matplotlib-base is solved
2424
"copernicusmarine>=2.1.1",
25-
"numpy<2.0.0",
26-
"xarray>=2024.7.0",
25+
"numpy>=2.0.0",
26+
"xarray<2024.7.0",
2727
"pandas",
2828
"zarr"
2929
]

xcube_cmems/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
2020
# DEALINGS IN THE SOFTWARE.
2121

22-
version = "0.1.6"
22+
version = "0.2.0"

0 commit comments

Comments
 (0)