tonik 0.1.12__tar.gz → 0.1.14__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tonik-0.1.12 → tonik-0.1.14}/.devcontainer/devcontainer.json +12 -4
- tonik-0.1.14/.pytest_cache/CACHEDIR.TAG +4 -0
- tonik-0.1.14/.pytest_cache/README.md +8 -0
- tonik-0.1.14/.pytest_cache/v/cache/lastfailed +16 -0
- tonik-0.1.14/.pytest_cache/v/cache/nodeids +17738 -0
- tonik-0.1.14/.pytest_cache/v/cache/stepwise +1 -0
- {tonik-0.1.12 → tonik-0.1.14}/HOW_TO_RELEASE.md +6 -0
- {tonik-0.1.12 → tonik-0.1.14}/PKG-INFO +8 -6
- {tonik-0.1.12 → tonik-0.1.14}/pyproject.toml +29 -6
- tonik-0.1.14/src/tonik/package_data/index.html +164 -0
- {tonik-0.1.12 → tonik-0.1.14}/src/tonik/xarray2zarr.py +5 -1
- {tonik-0.1.12 → tonik-0.1.14}/tests/test_save.py +11 -0
- tonik-0.1.12/docs/grafana_dashboard_screenshot.png +0 -0
- tonik-0.1.12/docs/grafana_integration.md +0 -35
- tonik-0.1.12/docs/grafana_login_screenshot.png +0 -0
- tonik-0.1.12/docs/index.md +0 -30
- tonik-0.1.12/docs/tonik_example.ipynb +0 -350
- tonik-0.1.12/src/tonik/package_data/index.html +0 -93
- {tonik-0.1.12 → tonik-0.1.14}/.gitignore +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/LICENSE +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/README.md +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/grafana_example/Dockerfile_api +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/grafana_example/Dockerfile_grafana +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/grafana_example/dashboards/demo_dashboard.json +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/grafana_example/docker-compose.yml +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/grafana_example/grafana.ini +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/grafana_example/provisioning/dashboards/default.yaml +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/grafana_example/provisioning/datasources/default.yaml +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/mkdocs.yml +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/src/tonik/__init__.py +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/src/tonik/api.py +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/src/tonik/storage.py +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/src/tonik/utils.py +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/src/tonik/xarray2netcdf.py +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/tests/backend_speed_test.py +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/tests/conftest.py +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/tests/test_api.py +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/tests/test_storage.py +0 -0
- {tonik-0.1.12 → tonik-0.1.14}/tests/test_utils.py +0 -0
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
{
|
|
4
4
|
"name": "Python 3",
|
|
5
5
|
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
|
6
|
-
"image": "mcr.microsoft.com/devcontainers/python:1-3.
|
|
7
|
-
//"image": "mcr.microsoft.com/devcontainers/python:1-3.9-bullseye",
|
|
6
|
+
"image": "mcr.microsoft.com/devcontainers/python:1-3.9-bullseye",
|
|
8
7
|
|
|
9
8
|
|
|
10
9
|
// Features to add to the dev container. More info: https://containers.dev/features.
|
|
@@ -15,10 +14,19 @@
|
|
|
15
14
|
"appPort": ["8000:8000"],
|
|
16
15
|
|
|
17
16
|
// Use 'postCreateCommand' to run commands after the container is created.
|
|
18
|
-
"postCreateCommand": "pip3 install -e .",
|
|
17
|
+
"postCreateCommand": "pip3 install -e . && pip3 install httpx pytest ipykernel hatch",
|
|
19
18
|
|
|
20
19
|
// Configure tool-specific properties.
|
|
21
|
-
|
|
20
|
+
"customizations": {
|
|
21
|
+
"vscode": {
|
|
22
|
+
"extensions": [
|
|
23
|
+
"ms-python.python",
|
|
24
|
+
"ms-toolsai.jupyter",
|
|
25
|
+
"astral-sh.ruff"
|
|
26
|
+
]
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
}
|
|
22
30
|
|
|
23
31
|
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
|
24
32
|
// "remoteUser": "root"
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# pytest cache directory #
|
|
2
|
+
|
|
3
|
+
This directory contains data from the pytest's cache plugin,
|
|
4
|
+
which provides the `--lf` and `--ff` options, as well as the `cache` fixture.
|
|
5
|
+
|
|
6
|
+
**Do not** commit this to version control.
|
|
7
|
+
|
|
8
|
+
See [the docs](https://docs.pytest.org/en/stable/how-to/cache.html) for more information.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"lib/python3.10/site-packages/numpy": true,
|
|
3
|
+
"lib/python3.10/site-packages/pandas": true,
|
|
4
|
+
"lib/python3.10/site-packages/xarray/tests/datatree": true,
|
|
5
|
+
"lib64/python3.10/site-packages/h5py/tests": true,
|
|
6
|
+
"lib64/python3.10/site-packages/numpy": true,
|
|
7
|
+
"lib64/python3.10/site-packages/pandas": true,
|
|
8
|
+
"lib64/python3.10/site-packages/xarray/tests": true,
|
|
9
|
+
"tests/test_api.py::test_exceptions": true,
|
|
10
|
+
"tests/test_save.py::test_zarr": true,
|
|
11
|
+
"tests/test_save.py::test_xarray2hdf5": true,
|
|
12
|
+
"tests/test_save.py::test_xarray2hdf5_archive_starttime": true,
|
|
13
|
+
"tests/test_save.py::test_xarray2hdf5_resolution": true,
|
|
14
|
+
"tests/test_save.py::test_xarray2hdf5_with_gaps": true,
|
|
15
|
+
"tests/test_group.py::test_rolling_window": true
|
|
16
|
+
}
|