Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build_installers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:

jobs:
build_intaller:
build_installer:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions deployment/env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ channels:
dependencies:
- napari
- pyqt
- pytorch::pytorch
- pytorch::torchvision
- pytorch
- torchvision
- micro_sam
1 change: 0 additions & 1 deletion deployment/post_install.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion deployment/version_getter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
yaml.dump(ctor_conf, outfile)
Loading