Skip to content

Commit

Permalink
Continue debugging paths 4.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeZiminski committed Jun 26, 2024
1 parent 80bbf1a commit f757111
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/check_kilosort4_releases.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
import re

from pathlib import Path
import requests
import json

Expand All @@ -15,7 +15,7 @@ def get_pypi_versions(package_name):
if __name__ == "__main__":
package_name = "kilosort"
versions = get_pypi_versions(package_name)
with open(f"{os.path.realpath(__file__).parent}/kilosort4-latest-version.json", "w") as f:
with open(Path(os.path.realpath(__file__)).parent / "kilosort4-latest-version.json", "w") as f:
json.dump(versions, f)

print("PRINT", os.path.realpath(__file__))

0 comments on commit f757111

Please sign in to comment.