Skip to content

Commit

Permalink
fix: updates lower bound on aind-data-schema-models (#1022)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtyoung84 authored Aug 16, 2024
1 parent eeac1e8 commit 26555a3
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 8 deletions.
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

0 comments on commit 26555a3

Please sign in to comment.