-
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.
Parsed data is now stored in attributes of mdx.ingest.Simulation and data paths are read from metadata by default Data path is now stored as a default in simulation metadata Documented mdx.ingest Minor changes: Add pre-commit hooks Add requirements.txt for dev
- Loading branch information
1 parent
5b38f1f
commit 4021ecb
Showing
6 changed files
with
220 additions
and
45 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
testbench.ipynb | ||
|
||
.vscode/ | ||
.pre-commit-config.yaml | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
|
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 |
---|---|---|
|
@@ -22,7 +22,8 @@ dependencies = [ | |
"PyYAML", | ||
"scipy", | ||
"sparse", | ||
"xarray" | ||
"xarray", | ||
"pre-commit" | ||
] | ||
|
||
[project.urls] | ||
|
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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
annotated-types==0.6.0 | ||
asttokens==2.4.1 | ||
black==24.4.2 | ||
bokeh==3.4.1 | ||
cfgv==3.4.0 | ||
click==8.1.7 | ||
cloudpickle==3.0.0 | ||
comm==0.2.2 | ||
contourpy==1.2.1 | ||
dask==2024.4.2 | ||
debugpy==1.8.1 | ||
decorator==5.1.1 | ||
distlib==0.3.8 | ||
distributed==2024.4.2 | ||
exceptiongroup==1.2.1 | ||
executing==2.0.1 | ||
filelock==3.14.0 | ||
fsspec==2024.3.1 | ||
h5netcdf==1.3.0 | ||
h5py==3.11.0 | ||
identify==2.5.36 | ||
importlib_metadata==7.1.0 | ||
ipykernel==6.29.4 | ||
ipython==8.18.1 | ||
jedi==0.19.1 | ||
Jinja2==3.1.3 | ||
jupyter_client==8.6.1 | ||
jupyter_core==5.7.2 | ||
llvmlite==0.42.0 | ||
locket==1.0.0 | ||
MarkupSafe==2.1.5 | ||
matplotlib-inline==0.1.7 | ||
-e git+ssh://[email protected]/ashenoy463/mdx.git@5b38f1fd1eb0a996ed5aabcba52ce3124e4c1fbd#egg=mdx | ||
msgpack==1.0.8 | ||
mypy-extensions==1.0.0 | ||
nest-asyncio==1.6.0 | ||
nodeenv==1.8.0 | ||
numba==0.59.1 | ||
numpy==1.26.4 | ||
packaging==24.0 | ||
pandas==2.2.2 | ||
parso==0.8.4 | ||
partd==1.4.1 | ||
pathspec==0.12.1 | ||
pexpect==4.9.0 | ||
pillow==10.3.0 | ||
pkg_resources==0.0.0 | ||
platformdirs==4.2.1 | ||
pre-commit==3.7.0 | ||
prompt-toolkit==3.0.43 | ||
psutil==5.9.8 | ||
ptyprocess==0.7.0 | ||
pure-eval==0.2.2 | ||
pydantic==2.7.1 | ||
pydantic_core==2.18.2 | ||
Pygments==2.17.2 | ||
python-dateutil==2.9.0.post0 | ||
pytz==2024.1 | ||
PyYAML==6.0.1 | ||
pyzmq==26.0.2 | ||
scipy==1.13.0 | ||
six==1.16.0 | ||
sortedcontainers==2.4.0 | ||
sparse==0.15.1 | ||
stack-data==0.6.3 | ||
tblib==3.0.0 | ||
tomli==2.0.1 | ||
toolz==0.12.1 | ||
tornado==6.4 | ||
traitlets==5.14.3 | ||
typing_extensions==4.11.0 | ||
tzdata==2024.1 | ||
urllib3==2.2.1 | ||
virtualenv==20.26.1 | ||
wcwidth==0.2.13 | ||
xarray==2024.3.0 | ||
xyzservices==2024.4.0 | ||
zict==3.0.0 | ||
zipp==3.18.1 |