Skip to content

Commit 954e9ea

Browse files
committed
ci: fix
1 parent 1818b40 commit 954e9ea

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/exe.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ jobs:
5555
- name: Build Mac exe
5656
if: ${{ matrix.platform == 'macos-latest' }}
5757
run: |
58+
mv src/juxtapose examples/fastapi-pyinstaller
5859
pyinstaller -c -F --clean --name sidecar-aarch64-apple-darwin --specpath dist --distpath dist examples/fastapi-pyinstaller/server.py
5960
6061
- name: Upload Windows EXE

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api"
44

55
[tool.poetry]
66
name = "juxtapose"
7-
version = "0.0.29"
7+
version = "0.0.30"
88
description = ""
99
authors = ["Zi Qin <ziqinyeow@gmail.com>"]
1010
license = "MIT"
@@ -76,7 +76,7 @@ onnxruntime-gpu = [{version = "^1.15.1", platform = "win32"}]
7676
# tapnet
7777
chex = {version = "*"}
7878
jax = {version = "0.4.24"}
79-
jaxlib = {version = "0.4.24"}
79+
jaxlib = {version = "0.4.23"}
8080
jaxline = {version = "*"}
8181
optax = {version = "*"}
8282
dm-haiku = {version = "*"}

src/juxtapose/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.0.29"
1+
__version__ = "0.0.30"
22

33
from .rtm import RTM
44
from .detectors import RTMDet, YOLOv8

0 commit comments

Comments
 (0)