Skip to content
Draft
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
1 change: 1 addition & 0 deletions environments/environment-Linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ dependencies:
- nwbinspector == 0.6.5
- tables
- numcodecs == 0.15.1 # numcodecs 0.16.0 is not compatible with zarr 2.18.5
- claude-agent-sdk >= 0.1.0 # AI conversion assistant
1 change: 1 addition & 0 deletions environments/environment-MAC-apple-silicon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ dependencies:
- ndx-pose == 0.2.2
- nwbinspector == 0.6.5
- numcodecs == 0.15.1 # numcodecs 0.16.0 is not compatible with zarr 2.18.5
- claude-agent-sdk >= 0.1.0 # AI conversion assistant
1 change: 1 addition & 0 deletions environments/environment-MAC-intel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ dependencies:
# with tables==3.9.1 (latest that can be used by neuroconv 0.6.0).
# h5py and tables need to be consistent for electron build for unknown reason
- ruamel.yaml.clib != 0.2.13 # 0.2.13 throws a build error on intel Mac -- see https://github.com/catalystneuro/roiextractors/issues/489
- claude-agent-sdk >= 0.1.0 # AI conversion assistant
1 change: 1 addition & 0 deletions environments/environment-Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ dependencies:
- nwbinspector == 0.6.5
- tables
- numcodecs == 0.15.1 # numcodecs 0.16.0 is not compatible with zarr 2.18.5
- claude-agent-sdk >= 0.1.0 # AI conversion assistant
7 changes: 6 additions & 1 deletion nwb-guide.spec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ import scipy
from PyInstaller.utils.hooks import collect_data_files
from PyInstaller.utils.hooks import collect_all

datas = [('./src/paths.config.json', '.'), ('./package.json', '.')]
datas = [
('./src/paths.config.json', '.'),
('./package.json', '.'),
('./src/pyflask/ai/skill', 'ai/skill'), # Bundled NWB conversion skill
]
binaries = []
hiddenimports = [
'email_validator',
Expand All @@ -24,6 +28,7 @@ datas += collect_data_files('jsonschema_specifications')

# Various consequences of lazy imports
modules_to_collect = [
'claude_agent_sdk',
'dandi',
'keyrings',
'unittest',
Expand Down
13 changes: 13 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@
"jsonschema": "^1.4.1",
"lit": "^2.6.1",
"lottie-web": "^5.9.5",
"marked": "^17.0.1",
"notyf": "^3.9.0",
"sweetalert2": "^11.6.13",
"tippy.js": "^6.3.7",
Expand Down
Loading