-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #312 from MC-kit/devel
Stop using xarray
- Loading branch information
Showing
27 changed files
with
408 additions
and
1,318 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""TODO...""" | ||
|
||
from __future__ import annotations | ||
|
||
from pathlib import Path | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Nox sessions.""" | ||
|
||
from __future__ import annotations | ||
|
||
from typing import TYPE_CHECKING, Final | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "xpypact" | ||
version = "0.10.0" | ||
version = "0.11.0" | ||
description = "\"Python workflow framework for FISPACT.\"" | ||
authors = ["dvp <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -48,21 +48,16 @@ Changelog = "https://github.com/MC-kit/xpypact/releases" | |
|
||
|
||
[tool.poetry.dependencies] | ||
# msgspec-0.18.5 doesn't work on 3.9 - uses | without importing annotations | ||
# msgspec-0.18.5 doesn't work on 3.9 - uses `|` without importing annotations from __future__ | ||
# duckdb-0.9.2, has no wheels for 3.12 and fails to build from source | ||
python = ">=3.10,<3.13" | ||
python = ">=3.9,<3.13" | ||
duckdb = ">=0.8.0" | ||
h5netcdf = ">=0.13.1" | ||
# mckit-nuclides = {version = ">=0.2.5", allow-prereleases = true} | ||
numpy = ">=1.26.0" | ||
openpyxl = ">=3.0.9" | ||
pandas = ">=2.0.0" | ||
xarray = ">=2022.3.0" | ||
multipledispatch = ">=0.6.0" | ||
msgspec = ">=0.18.5" | ||
rich = ">=13.7.0" | ||
polars = {version = "^0.20.3", extras = ["all"]} | ||
pyarrow = "^14.0.2" | ||
mckit-nuclides = "^0.3.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"""Interface to data access facilities.""" | ||
|
||
from __future__ import annotations | ||
|
||
from typing import TYPE_CHECKING | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.