diff --git a/.github/scripts/check_kilosort4_releases.py b/.github/scripts/check_kilosort4_releases.py index 698faa56a1..9cdb3d4c70 100644 --- a/.github/scripts/check_kilosort4_releases.py +++ b/.github/scripts/check_kilosort4_releases.py @@ -17,3 +17,5 @@ def get_pypi_versions(package_name): versions = get_pypi_versions(package_name) with open("kilosort4-latest-version.json", "w") as f: json.dump(versions, f) + + print("PRINT", os.path.realpath(__file__)) diff --git a/.github/workflows/test_kilosort4.yml b/.github/workflows/test_kilosort4.yml index c9e531c5b4..862783f6fd 100644 --- a/.github/workflows/test_kilosort4.yml +++ b/.github/workflows/test_kilosort4.yml @@ -38,7 +38,6 @@ jobs: python .github/scripts/check_kilosort4_releases.py shell: bash - # TODO: move to artifacts - name: Upload versions file uses: actions/upload-artifact@v2 with: @@ -64,7 +63,7 @@ jobs: matrix: python-version: ["3.12"] # TODO: "3.9", # Lower and higher versions we support os: [ubuntu-latest] # TODO: macos-13, windows-latest, - ks_version: ["4.0.12"] # ${{ fromJson(needs.configure.outputs.matrix) }} # TODO: add / build from pypi based on Christians PR + ks_version: ${{ fromJson(needs.configure.outputs.matrix) }} # TODO: add / build from pypi based on Christians PR steps: - uses: actions/checkout@v4 - name: Setup Python ${{ matrix.python-version }}