MilesCranmer commited on
Commit
e637451
1 Parent(s): a90c881

Ensure modified juliapkg.json ends with newline

Browse files
.github/workflows/update_backend_version.py CHANGED
@@ -27,3 +27,5 @@ with open(pyproject_toml, "w") as toml_file:
27
 
28
  with open(juliapkg_json, "w") as f:
29
  json.dump(juliapkg_data, f, indent=4)
 
 
 
27
 
28
  with open(juliapkg_json, "w") as f:
29
  json.dump(juliapkg_data, f, indent=4)
30
+ # Ensure ends with newline
31
+ f.write("\n")