From 954e9eafdf3132050fd28cc6e9556a665b1e25d3 Mon Sep 17 00:00:00 2001 From: ziqinyeow Date: Sat, 4 May 2024 20:48:56 +0800 Subject: [PATCH] ci: fix --- .github/workflows/exe.yml | 1 + pyproject.toml | 4 ++-- src/juxtapose/__init__.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/exe.yml b/.github/workflows/exe.yml index 7fd3423..56e22eb 100644 --- a/.github/workflows/exe.yml +++ b/.github/workflows/exe.yml @@ -55,6 +55,7 @@ jobs: - name: Build Mac exe if: ${{ matrix.platform == 'macos-latest' }} run: | + mv src/juxtapose examples/fastapi-pyinstaller pyinstaller -c -F --clean --name sidecar-aarch64-apple-darwin --specpath dist --distpath dist examples/fastapi-pyinstaller/server.py - name: Upload Windows EXE diff --git a/pyproject.toml b/pyproject.toml index 9aaf930..d4f3c49 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "juxtapose" -version = "0.0.29" +version = "0.0.30" description = "" authors = ["Zi Qin "] license = "MIT" @@ -76,7 +76,7 @@ onnxruntime-gpu = [{version = "^1.15.1", platform = "win32"}] # tapnet chex = {version = "*"} jax = {version = "0.4.24"} -jaxlib = {version = "0.4.24"} +jaxlib = {version = "0.4.23"} jaxline = {version = "*"} optax = {version = "*"} dm-haiku = {version = "*"} diff --git a/src/juxtapose/__init__.py b/src/juxtapose/__init__.py index 3a28aa5..066a356 100644 --- a/src/juxtapose/__init__.py +++ b/src/juxtapose/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.29" +__version__ = "0.0.30" from .rtm import RTM from .detectors import RTMDet, YOLOv8