Skip to content

Commit

Permalink
Merge branch 'main' into dev_1.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
beat-buesser authored Jan 21, 2025
2 parents e20d091 + 95897bd commit 834b3fb
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
type=semver,pattern={{version}}
- name: Build and push Docker image
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355
uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d
with:
context: .
push: true
Expand Down
2 changes: 1 addition & 1 deletion art/estimators/object_tracking/pytorch_goturn.py
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ def track(self, img_files: list[str], box: np.ndarray, visualize: bool = False)
for i_f, img_file in enumerate(img_files):
image = Image.open(img_file)
if not image.mode == "RGB":
image = image.convert("RGB")
image = image.convert("RGB") # type: ignore

start_time = time.time()
if i_f == 0:
Expand Down
16 changes: 8 additions & 8 deletions requirements_test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ numpy>=1.18.5,<1.27
scipy==1.10.1
matplotlib==3.7.1
scikit-learn==1.4.1.post1
six==1.16.0
Pillow==10.3.0
six==1.17.0
Pillow==11.1.0
tqdm==4.67.1
statsmodels==0.14.2
pydub==0.25.1
resampy==0.4.3
ffmpeg-python==0.2.0
cma==3.3.0
pandas==2.2.2
librosa==0.10.1
cma==4.0.0
pandas==2.2.3
librosa==0.10.2.post1
numba~=0.56.4
opencv-python
sortedcontainers==2.4.0
Expand All @@ -39,11 +39,11 @@ torchvision==0.20.0
timm==0.9.2

catboost==1.2.3
GPy==1.13.1
GPy==1.13.2
lightgbm==4.3.0
xgboost==2.1.1

kornia~=0.7.1
kornia~=0.8.0
tensorboardX==2.6.2.2
lief==0.15.1
jax[cpu]==0.4.26
Expand All @@ -53,7 +53,7 @@ jax[cpu]==0.4.26
# tests and style checking
pytest~=8.3.2
pytest-mock~=3.14.0
pytest-cov~=5.0.0
pytest-cov~=6.0.0
pylint==3.2.6
mypy==1.11.1
pycodestyle==2.12.1
Expand Down

0 comments on commit 834b3fb

Please sign in to comment.