diff --git a/.github/workflows/build_installers.yaml b/.github/workflows/build_installers.yaml index 699c3c489..f2feef351 100644 --- a/.github/workflows/build_installers.yaml +++ b/.github/workflows/build_installers.yaml @@ -4,7 +4,7 @@ on: workflow_dispatch: jobs: - build_intaller: + build_installer: name: ${{ matrix.os }} runs-on: ${{ matrix.os }} @@ -91,7 +91,7 @@ jobs: constructor --conda-exe=$(which mamba) --output-dir ./${{ matrix.os }}_x86_64 . - name: upload installer - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.os }}_x86_64 path: ./deployment/${{ matrix.os }}_x86_64 diff --git a/deployment/env.yaml b/deployment/env.yaml index dc5d317a1..a3d12c73f 100644 --- a/deployment/env.yaml +++ b/deployment/env.yaml @@ -4,6 +4,6 @@ channels: dependencies: - napari - pyqt - - pytorch::pytorch - - pytorch::torchvision + - pytorch + - torchvision - micro_sam diff --git a/deployment/post_install.bat b/deployment/post_install.bat index 2d2fa2c69..0439e0182 100644 --- a/deployment/post_install.bat +++ b/deployment/post_install.bat @@ -4,7 +4,6 @@ rem This script searches for the 'freetype.dll' file within a specific directory rem and attempts to move it to the target directory during post-installation on Windows. rem If not found locally, it downloads the DLL from a defined URL. - rem Define download URL (replace with the actual URL for your desired version) set DOWNLOAD_URL=https://raw.githubusercontent.com/ubawurinna/freetype-windows-binaries/master/release%20dll/win64/freetype.dll diff --git a/deployment/version_getter.py b/deployment/version_getter.py index 829e05422..997a65f4c 100644 --- a/deployment/version_getter.py +++ b/deployment/version_getter.py @@ -27,4 +27,4 @@ ctor_conf["version"] = runpy.run_path(os.path.join("..", "micro_sam", "__version__.py"))["__version__"] with open(construct_file, "w") as outfile: - yaml.dump(ctor_conf, outfile) \ No newline at end of file + yaml.dump(ctor_conf, outfile)