Skip to content

Commit

Permalink
chore(deps): bump pydantic from 2.8.2 to 2.9.2 in the pip group acros…
Browse files Browse the repository at this point in the history
…s 1 directory (#52)

* chore(deps): bump pydantic in the pip group across 1 directory

Bumps the pip group with 1 update in the / directory: [pydantic](https://github.com/pydantic/pydantic).


Updates `pydantic` from 2.8.2 to 2.9.2
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.8.2...v2.9.2)

---
updated-dependencies:
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <[email protected]>

* chore: Autoformat code

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kenneth Yang <[email protected]>
Co-authored-by: kjy5 <[email protected]>
  • Loading branch information
3 people authored Sep 24, 2024
1 parent 30e443b commit 3ba93ca
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ classifiers = [
"Intended Audience :: Science/Research",
]
dependencies = [
"pydantic==2.8.2",
"pydantic==2.9.2",
]

[project.urls]
Expand Down
7 changes: 6 additions & 1 deletion src/vbl_aquarium/models/pinpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from pydantic import Field

from vbl_aquarium.models.unity import Vector2, Vector3, Color
from vbl_aquarium.models.unity import Color, Vector2, Vector3
from vbl_aquarium.utils.vbl_base_model import VBLBaseModel

# CRANIOTOMY
Expand All @@ -13,6 +13,7 @@ class CraniotomyModel(VBLBaseModel):
size: Vector2
position: Vector3


# TRANSFORM


Expand All @@ -25,6 +26,7 @@ class AffineTransformModel(VBLBaseModel):

# RIG


class RigModel(VBLBaseModel):
name: str
image: str
Expand All @@ -35,13 +37,15 @@ class RigModel(VBLBaseModel):

# Probes and insertions


class InsertionModel(VBLBaseModel):
position: Vector3
angles: Vector3
atlas_name: str
transform_name: str
reference_coord: Vector3


class ProbeModel(VBLBaseModel):
insertion: InsertionModel

Expand All @@ -53,6 +57,7 @@ class ProbeModel(VBLBaseModel):

# Full scene


class SceneModel(VBLBaseModel):
atlas_name: str
transform_name: str
Expand Down

0 comments on commit 3ba93ca

Please sign in to comment.