diff --git a/.github/workflows/publish-to-pypi.yaml b/.github/workflows/publish-to-pypi.yaml index 2949271..cc19130 100644 --- a/.github/workflows/publish-to-pypi.yaml +++ b/.github/workflows/publish-to-pypi.yaml @@ -34,7 +34,7 @@ jobs: - name: Install dependencies run: | - python -m pip install -U twine yaml + python -m pip install -U twine PyYAML==6.0.1 - name: Generate JSON Schemas run: | diff --git a/boneio/helper/schema_converter.py b/boneio/helper/schema_converter.py index c00ca25..e92d7a4 100644 --- a/boneio/helper/schema_converter.py +++ b/boneio/helper/schema_converter.py @@ -195,6 +195,7 @@ def main(): with open(section_schema_file, "w") as f: json.dump(section_json_schema, f, indent=2) print(f"Section schema for {section_name} written to {section_schema_file}") + print("Finished.") if __name__ == "__main__": main()