Skip to content

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ziqinyeow committed May 4, 2024
1 parent 1818b40 commit 954e9ea
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/exe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <ziqinyeow@gmail.com>"]
license = "MIT"
Expand Down Expand Up @@ -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 = "*"}
Expand Down
2 changes: 1 addition & 1 deletion src/juxtapose/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.0.29"
__version__ = "0.0.30"

from .rtm import RTM
from .detectors import RTMDet, YOLOv8
Expand Down

0 comments on commit 954e9ea

Please sign in to comment.