Skip to content
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: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
Expand All @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
Expand Down
2 changes: 1 addition & 1 deletion data_cache/cache_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def __getitem__(self, key: str) -> Union[pd.DataFrame, Tuple[pd.DataFrame]]:

class PandasStore(pd.HDFStore):
def create_dataset(self, key: str, data: pd.DataFrame) -> None:
data.to_hdf(super(), key)
data.to_hdf(path_or_buf=self, key=key)

def __getitem__(self, key: str) -> PandasGroup:
return PandasGroup(self, key)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ dependencies = [
"h5py",
]

[tool.uv]
dev-dependencies = [
[dependency-groups]
dev = [
"pre-commit",
"pytest",
"pathos"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_data_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def test_pandas_data_types():
"floaty": [1.0, 2.0, 3.0],
"booly": [True, True, False],
"daty": pd.date_range(start="1/1/2018", periods=3),
"timy": pd.to_timedelta(np.arange(3), unit="d"),
"timy": pd.to_timedelta(np.arange(3), unit="D"),
"caty": [["aaa", "bbb", "ccc"], ["a"], []],
}
)
Expand Down
Loading