Skip to content

Commit a09ac6f

Browse files
committed
Update to aind-data-schema==1.1.1
1 parent 283e999 commit a09ac6f

File tree

3 files changed

+22
-12
lines changed

3 files changed

+22
-12
lines changed

pdm.lock

+20-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ dependencies = [
2424
"hdmf>=3.14.0",
2525
"ndx-pose>=0.1.1",
2626
"tables>=3.9.2",
27+
"aind-data-schema==1.1.1",
2728
"pydantic>=2.6.4",
2829
"npc-lims>=0.1.183",
2930
"npc-sync>=0.1.19",
@@ -33,7 +34,6 @@ dependencies = [
3334
"npc-session>=0.1.39",
3435
"npc-mvr>=0.1.8",
3536
"npc-io>=0.1.30",
36-
"aind-data-schema @ git+https://github.com/AllenNeuralDynamics/aind-data-schema.git@1072-qc-automate-state-properties-in-qualitycontrol-and-evaluation-based-on-metric-states",
3737
]
3838
requires-python = ">=3.9"
3939
readme = "README.md"

src/npc_sessions/sessions.py

+1-6
Original file line numberDiff line numberDiff line change
@@ -3357,7 +3357,7 @@ def _aind_data_streams(self) -> tuple[aind_data_schema.core.session.Stream, ...]
33573357
),
33583358
ephys_modules=(
33593359
ephys_modules := [
3360-
aind_data_schema.core.session.EphysModule(
3360+
aind_data_schema.core.session.ManipulatorModule(
33613361
assembly_name=probe.name.upper(),
33623362
arc_angle=0.0,
33633363
module_angle=0.0,
@@ -3384,11 +3384,6 @@ def _aind_data_streams(self) -> tuple[aind_data_schema.core.session.Stream, ...]
33843384
unit="micrometer",
33853385
)
33863386
),
3387-
ephys_probes=[
3388-
aind_data_schema.core.session.EphysProbeConfig(
3389-
name=probe.name.upper(),
3390-
)
3391-
],
33923387
)
33933388
for probe in self.probe_letters_to_use
33943389
]

0 commit comments

Comments
 (0)