Skip to content

Commit 322b774

Browse files
authored
Merge pull request #151 from OPHoperHPO/reqs-update
updated deps
2 parents 8cdc508 + 7bd03d8 commit 322b774

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

Dockerfile.cuda

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ COPY ./carvekit/ml/files/models_loc.py ./carvekit/ml/files/models_loc.py
1414
RUN python3 -c "from carvekit.ml.files.models_loc import download_all; download_all();"
1515
RUN rm -rf ./carvekit
1616

17-
FROM pytorch/pytorch:2.1.2-cuda12.1-cudnn8-runtime
17+
FROM pytorch/pytorch:2.2.2-cuda12.1-cudnn8-runtime
1818
WORKDIR /app
1919

2020
RUN apt-get update && apt-get -y install libgl1 libglib2.0-0 # Install cv2 dep.

carvekit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "4.1.1"
1+
version = "4.1.2"

requirements.txt

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
requests~=2.31.0
2-
torch~=2.1.2
3-
Pillow==10.1.0
4-
typing~=3.7.4.3
5-
torchvision~=0.16.2
6-
opencv-python~=4.8.1.78
7-
numpy~=1.26.2
8-
loguru~=0.7.2
9-
uvicorn~=0.25.0
10-
fastapi~=0.108.0
11-
pydantic~=2.5.3
12-
click~=8.1.7
13-
tqdm~=4.66.1
14-
setuptools~=69.0.3
15-
aiofiles~=23.2.1
16-
python-multipart~=0.0.6
1+
requests>=2.31.0
2+
torch>=2.2.2
3+
Pillow>=10.3.0
4+
typing>=3.7.4.3
5+
torchvision>=0.17.2
6+
opencv-python>=4.9.0.80
7+
numpy>=1.26.4
8+
loguru>=0.7.2
9+
uvicorn>=0.29.0
10+
fastapi>=0.110.1
11+
pydantic>=2.6.4
12+
click>=8.1.7
13+
tqdm>=4.66.2
14+
setuptools>=69.2.0
15+
aiofiles>=23.2.1
16+
python-multipart>=0.0.9

requirements_dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pre-commit==3.6.0
1+
pre-commit>=3.7.0
22

requirements_test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest~=7.4.3
1+
pytest>=8.1.1
22

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def req_file(filename: str, folder: str = "."):
2525
# you may also want to remove whitespace characters
2626
# Example: `\n` at the end of each line
2727
if os.getenv("COLAB_PACKAGE_RELEASE") is not None:
28-
return [re.sub("(~=.*)|(==.*)|(typing.*)", "", x.strip()) for x in content]
28+
return [re.sub("(>=.*)|(~=.*)|(==.*)|(typing.*)", "", x.strip()) for x in content]
2929
return [x.strip() for x in content]
3030

3131

0 commit comments

Comments
 (0)