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

fix: updates lower bound on aind-data-schema-models #1022

Merged
merged 1 commit into from
Aug 16, 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
1 change: 0 additions & 1 deletion .github/workflows/publish_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ jobs:
- name: Create and upload schemas
run: |
python -m pip install -e .
python -m pip install pydantic==2.6.4
python -m aind_data_schema.utils.json_writer --output $TEMP_DIR --attach-version
python -m pip install awscli
aws s3 sync $TEMP_DIR s3://${AWS_DATA_SCHEMA_BUCKET}/$S3_PREFIX
2 changes: 0 additions & 2 deletions .github/workflows/tag_and_publish_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ jobs:
- name: Create and upload schemas
run: |
python -m pip install -e .
python -m pip install pydantic==2.6.4
python -m aind_data_schema.utils.json_writer --output $TEMP_DIR --attach-version
python -m pip install awscli
aws s3 sync $TEMP_DIR s3://${AWS_DATA_SCHEMA_BUCKET}/$S3_PREFIX
Expand Down Expand Up @@ -94,7 +93,6 @@ jobs:
run: |
sudo apt install graphviz libgraphviz-dev -y
python -m pip install -e .[docs] --no-cache-dir
python -m pip install pydantic==2.6.4
python -m pip install awscli
- name: Generate erdantic diagrams
run: |
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/update_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
- name: Install dependencies
run: |
python -m pip install -e .[dev] --no-cache-dir
python -m pip install pydantic==2.6.4
- name: Bump schema versions
run: |
python -m aind_data_schema.utils.schema_version_bump
Expand All @@ -28,7 +27,6 @@ jobs:
run: |
rm -rf $OUTPUT_DIR
python -m pip install -e .
python -m pip install pydantic==2.6.4
python -m aind_data_schema.utils.json_writer --output $OUTPUT_DIR
- name: Create example schemas
run: |
Expand Down Expand Up @@ -57,7 +55,6 @@ jobs:
run: |
sudo apt install graphviz libgraphviz-dev -y
python -m pip install -e .[dev] -e .[docs] --no-cache-dir
python -m pip install pydantic==2.6.4
- name: Generate new rst files
run: |
sphinx-apidoc -o docs/source/ src
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ readme = "README.md"
dynamic = ["version"]

dependencies = [
'aind-data-schema-models>=0.2.5',
'aind-data-schema-models>=0.3.2',
'dictdiffer',
'pydantic>2.0',
'pydantic>=2.7',
'inflection',
'jsonschema',
'semver'
Expand Down
Loading