mirror of
https://github.com/p2p-ld/nwb-linkml.git
synced 2024-11-12 17:54:29 +00:00
docs dependencies
This commit is contained in:
parent
48b883a588
commit
25536c053e
3 changed files with 1839 additions and 5 deletions
|
@ -8,16 +8,14 @@ authors = [
|
|||
license = {text = "AGPL-3.0"}
|
||||
requires-python = "<3.13,>=3.10"
|
||||
dependencies = [
|
||||
# "nwb-linkml",
|
||||
# "nwb-schema-language",
|
||||
"nwb-linkml @ file:///${PROJECT_ROOT}/../nwb_linkml",
|
||||
"nwb-schema-language @ file:///${PROJECT_ROOT}/../nwb_schema_language",
|
||||
"sphinx<8.0.0,>=7.2.5",
|
||||
"furo>=2023.8.19",
|
||||
"myst-parser>=2.0.0",
|
||||
"autodoc-pydantic>=2.0.1",
|
||||
"nptyping>=2.5.0",
|
||||
"sphinx-autobuild>=2021.3.14",
|
||||
"nwb-linkml @ file:///${PROJECT_ROOT}/nwb_linkml",
|
||||
"nwb-schema-language @ file:///${PROJECT_ROOT}/nwb_schema_language",
|
||||
"sphinx-design>=0.5.0",
|
||||
"sphinx-togglebutton>=0.3.2",
|
||||
"myst-nb @ git+https://github.com/executablebooks/MyST-NB.git",
|
||||
|
|
1836
nwb_linkml/pdm.lock
Normal file
1836
nwb_linkml/pdm.lock
Normal file
File diff suppressed because it is too large
Load diff
|
@ -326,7 +326,7 @@ def truncate_file(source: Path, target: Optional[Path] = None, n:int=10) -> Path
|
|||
|
||||
# use h5repack to actually remove the items from the dataset
|
||||
if shutil.which('h5repack') is None:
|
||||
warnings.warn('Truncated file made, but since h5repack not found in path, file won't be any smaller')
|
||||
warnings.warn("Truncated file made, but since h5repack not found in path, file won't be any smaller")
|
||||
return target
|
||||
|
||||
print('Repacking hdf5...')
|
||||
|
|
Loading…
Reference in a new issue