Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: updates dependencies #69

Merged
merged 2 commits into from
Feb 5, 2024
Merged
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
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ readme = "README.md"
dynamic = ["version"]

dependencies = [
'boto3',
'aind-data-schema==0.26.5',
'pydantic>=2.0',
'pydantic-settings>=2.0',
]

[project.optional-dependencies]
Expand All @@ -32,10 +36,6 @@ dev = [
]

server = [
'boto3',
'aind-data-schema==0.26.5',
'pydantic>=2.0',
'pydantic-settings>=2.0',
'fastapi',
'httpx',
'jinja2',
Expand Down
5 changes: 4 additions & 1 deletion src/aind_data_transfer_service/configs/job_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
PrivateAttr,
SecretStr,
ValidationInfo,
field_validator,
field_validator, ConfigDict,
)
from pydantic_settings import BaseSettings

Expand Down Expand Up @@ -104,6 +104,9 @@ def get_compress_source_default(
class BasicUploadJobConfigs(BaseSettings):
"""Configuration for the basic upload job"""

# Allow users to pass in extra fields
model_config = ConfigDict(extra='allow',)

# Need some way to extract abbreviations. Maybe a public method can be
# added to the Platform class
_PLATFORM_MAP: ClassVar = {
Expand Down
Loading