models-dev 1.0.72__tar.gz → 1.0.73__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {models_dev-1.0.72 → models_dev-1.0.73}/PKG-INFO +1 -1
- {models_dev-1.0.72 → models_dev-1.0.73}/pyproject.toml +1 -1
- {models_dev-1.0.72 → models_dev-1.0.73}/scripts/update.py +6 -0
- {models_dev-1.0.72 → models_dev-1.0.73}/src/models_dev/data.json.gz +0 -0
- {models_dev-1.0.72 → models_dev-1.0.73}/uv.lock +1 -1
- {models_dev-1.0.72 → models_dev-1.0.73}/.gitignore +0 -0
- {models_dev-1.0.72 → models_dev-1.0.73}/LICENSE +0 -0
- {models_dev-1.0.72 → models_dev-1.0.73}/README.md +0 -0
- {models_dev-1.0.72 → models_dev-1.0.73}/src/models_dev/__init__.py +0 -0
- {models_dev-1.0.72 → models_dev-1.0.73}/src/models_dev/_loader.py +0 -0
- {models_dev-1.0.72 → models_dev-1.0.73}/src/models_dev/_types.py +0 -0
- {models_dev-1.0.72 → models_dev-1.0.73}/src/models_dev/py.typed +0 -0
- {models_dev-1.0.72 → models_dev-1.0.73}/tests/test_data.py +0 -0
|
@@ -163,6 +163,12 @@ def main() -> int:
|
|
|
163
163
|
print("No changes")
|
|
164
164
|
return 0
|
|
165
165
|
|
|
166
|
+
# Signal to GitHub Actions that changes occurred
|
|
167
|
+
github_output = os.environ.get("GITHUB_OUTPUT")
|
|
168
|
+
if github_output:
|
|
169
|
+
with open(github_output, "a") as f:
|
|
170
|
+
f.write("changes=true\n")
|
|
171
|
+
|
|
166
172
|
print(f"Changes detected ({len(diff)} chars)")
|
|
167
173
|
print(diff[:500])
|
|
168
174
|
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|