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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: models-dev
3
- Version: 1.0.72
3
+ Version: 1.0.73
4
4
  Summary: Typed Python interface to models.dev API data
5
5
  Project-URL: Homepage, https://github.com/vklimontovich/models-dev
6
6
  Project-URL: Documentation, https://models.dev
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "models-dev"
3
- version = "1.0.72"
3
+ version = "1.0.73"
4
4
  description = "Typed Python interface to models.dev API data"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -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
 
@@ -34,7 +34,7 @@ wheels = [
34
34
 
35
35
  [[package]]
36
36
  name = "models-dev"
37
- version = "1.0.72"
37
+ version = "1.0.73"
38
38
  source = { editable = "." }
39
39
 
40
40
  [package.dev-dependencies]
File without changes
File without changes
File without changes