Skip to content

Commit 21d592d

Browse files
committed
ci: fix cache
1 parent 954e9ea commit 21d592d

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/exe.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ jobs:
4242

4343
- name: Install dependencies
4444
run: |
45-
pip install .
45+
pip install --upgrade pip
46+
pip cache purge
47+
pip install --no-cache-dir .
4648
pip uninstall -y juxtapose ultralytics yapf
4749
pip install pyinstaller fastapi uvicorn[standard] python-multipart juxtematics
4850

pyproject.toml

Lines changed: 1 addition & 1 deletion
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.30"
7+
version = "0.0.31"
88
description = ""
99
authors = ["Zi Qin <ziqinyeow@gmail.com>"]
1010
license = "MIT"

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.30"
1+
__version__ = "0.0.31"
22

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

0 commit comments

Comments
 (0)