Skip to content

Commit 834b3fb

Browse files
authored
Merge branch 'main' into dev_1.19.1
2 parents e20d091 + 95897bd commit 834b3fb

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/dockerhub.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
type=semver,pattern={{version}}
3939
4040
- name: Build and push Docker image
41-
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355
41+
uses: docker/build-push-action@67a2d409c0a876cbe6b11854e3e25193efe4e62d
4242
with:
4343
context: .
4444
push: true

art/estimators/object_tracking/pytorch_goturn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ def track(self, img_files: list[str], box: np.ndarray, visualize: bool = False)
796796
for i_f, img_file in enumerate(img_files):
797797
image = Image.open(img_file)
798798
if not image.mode == "RGB":
799-
image = image.convert("RGB")
799+
image = image.convert("RGB") # type: ignore
800800

801801
start_time = time.time()
802802
if i_f == 0:

requirements_test.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ numpy>=1.18.5,<1.27
44
scipy==1.10.1
55
matplotlib==3.7.1
66
scikit-learn==1.4.1.post1
7-
six==1.16.0
8-
Pillow==10.3.0
7+
six==1.17.0
8+
Pillow==11.1.0
99
tqdm==4.67.1
1010
statsmodels==0.14.2
1111
pydub==0.25.1
1212
resampy==0.4.3
1313
ffmpeg-python==0.2.0
14-
cma==3.3.0
15-
pandas==2.2.2
16-
librosa==0.10.1
14+
cma==4.0.0
15+
pandas==2.2.3
16+
librosa==0.10.2.post1
1717
numba~=0.56.4
1818
opencv-python
1919
sortedcontainers==2.4.0
@@ -39,11 +39,11 @@ torchvision==0.20.0
3939
timm==0.9.2
4040

4141
catboost==1.2.3
42-
GPy==1.13.1
42+
GPy==1.13.2
4343
lightgbm==4.3.0
4444
xgboost==2.1.1
4545

46-
kornia~=0.7.1
46+
kornia~=0.8.0
4747
tensorboardX==2.6.2.2
4848
lief==0.15.1
4949
jax[cpu]==0.4.26
@@ -53,7 +53,7 @@ jax[cpu]==0.4.26
5353
# tests and style checking
5454
pytest~=8.3.2
5555
pytest-mock~=3.14.0
56-
pytest-cov~=5.0.0
56+
pytest-cov~=6.0.0
5757
pylint==3.2.6
5858
mypy==1.11.1
5959
pycodestyle==2.12.1

0 commit comments

Comments
 (0)