Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/validate-config-schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
uses: astral-sh/setup-uv@6ee6290f1cbc4156c0bdd66691b2c144ef8df19a # v7.4.0

- name: Install dependencies
run: uv pip install --system "pydantic>=2.10.0,<3.0.0"
run: uv pip install --system "pydantic==2.12.5"

- name: Regenerate schema
run: python data-pipeline/capture/config/generate_config_schema.py
Expand All @@ -49,7 +49,7 @@ jobs:
echo "The JSON Schema file does not match the current pydantic models."
echo "If the models have changed intentionally, regenerate the schema by running the following command locally:"
echo ""
echo " uv pip install pydantic && python data-pipeline/capture/config/generate_config_schema.py"
echo " uv pip install 'pydantic==2.12.5' && python data-pipeline/capture/config/generate_config_schema.py"
echo ""
echo "Then commit the updated schema file."
echo ""
Expand Down
6 changes: 3 additions & 3 deletions data-pipeline/capture/config/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
description: Configuration reference for topic recording, episode triggers, disk monitoring, and gap detection
author: Microsoft
Expand Down Expand Up @@ -215,7 +215,7 @@

```bash
# Run the schema generation script
pip install pydantic && PYTHONPATH=. python config/generate_config_schema.py
pip install 'pydantic==2.12.5' && PYTHONPATH=. python config/generate_config_schema.py

# Verify the updated schema
git diff config/recording_config.schema.json
Expand All @@ -236,5 +236,5 @@

## 🔗 Related Documentation

* [LeRobot Integration](../docs/lerobot-inference.md) - Dataset structure and feature mapping
* [AzureML Validation Job Debugging](../docs/azureml-validation-job-debugging.md) - Training pipeline integration
* [LeRobot Integration](../docs/inference/lerobot-inference.md) - Dataset structure and feature mapping
* [AzureML Validation Job Debugging](../docs/operations/azureml-validation-job-debugging.md) - Training pipeline integration
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dev = [
"pytest",
"pytest-mock",
"pytest-cov",
"pydantic",
"pydantic==2.12.5",
"ipykernel",
"ipywidgets",
"tqdm",
Expand Down
Loading