Skip to content

Commit

Permalink
Merge branch 'main' into remove-abbreviations
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Jan 9, 2024
2 parents b0015c0 + e140dcc commit d0a651b
Show file tree
Hide file tree
Showing 8 changed files with 50 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pyflask-build-and-dist-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
include:
- python-version: "3.9"
os: ubuntu-latest
label: environments/environment-Linux.yml
prefix: /usr/share/miniconda3/envs/nwb-guide
# current linux installation instructions use dev mode instead of distributable
# - python-version: "3.9"
# os: ubuntu-latest
# label: environments/environment-Linux.yml
# prefix: /usr/share/miniconda3/envs/nwb-guide

- python-version: "3.9"
os: macos-latest
Expand Down
2 changes: 1 addition & 1 deletion environments/environment-Linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ channels:
- defaults
dependencies:
- python = 3.9.18
- PyInstaller = 5.13.0
- PyInstaller = 6.3.0
- nodejs = 18.16.1
- numcodecs = 0.11.0
# install these from conda-forge so that dependent packages get included in the distributable
Expand Down
2 changes: 1 addition & 1 deletion environments/environment-MAC-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ channels:
- defaults
dependencies:
- python = 3.9.18
- PyInstaller = 5.13.0
- PyInstaller = 6.3.0
- nodejs = 18.16.1
- numcodecs = 0.11.0
- lxml = 4.9.3 # pypi build fails due to x64/arm64 mismatch so install from conda-forge
Expand Down
2 changes: 1 addition & 1 deletion environments/environment-MAC.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ channels:
- defaults
dependencies:
- python = 3.9.18
- PyInstaller = 5.13.0
- PyInstaller = 6.3.0
- nodejs = 18.16.1
- numcodecs = 0.11.0
# install these from conda-forge so that dependent packages get included in the distributable
Expand Down
2 changes: 1 addition & 1 deletion environments/environment-Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ channels:
dependencies:
- python = 3.9.17
- nodejs = 18.16.1
- PyInstaller = 5.13.0
- PyInstaller = 6.3.0
- pywin32 = 303
- git = 2.20.1
- setuptools = 58.0.4
Expand Down
2 changes: 2 additions & 0 deletions guideGlobalMetadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
"AxonaRecordingInterface",
"VideoInterface",
"NeuralynxRecordingInterface",
"Suite2pSegmentationInterface",
"AlphaOmegaRecordingInterface",
"AlphaOmegaRecordingInterface",
"DeepLabCutInterface",
"SLEAPInterface",
Expand Down
37 changes: 37 additions & 0 deletions schemas/json/generated/Suite2pSegmentationInterface.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"required": [],
"properties": {
"Suite2pSegmentationInterface": {
"required": [
"folder_path"
],
"properties": {
"folder_path": {
"format": "directory",
"type": "string"
},
"combined": {
"type": "boolean",
"default": false
},
"plane_no": {
"type": "number",
"default": 0
},
"verbose": {
"type": "boolean",
"default": true
}
},
"type": "object",
"additionalProperties": false
}
},
"type": "object",
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "source.schema.json",
"title": "Source data schema",
"description": "Schema for the source data, files and directories",
"version": "0.1.0"
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ const propsToIgnore = [
"load_sync_channel",
"stream_id", // NOTE: May be desired for other interfaces
"nsx_override",
"combined",
"plane_no",
];

export class GuidedSourceDataPage extends ManagedPage {
Expand Down

0 comments on commit d0a651b

Please sign in to comment.