Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated pillow, unlocked test #7100

Merged
merged 22 commits into from
Dec 28, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Updated pillow, unlocked test
  • Loading branch information
bsekachev committed Nov 6, 2023
commit 1e2da2445b8ead283fba66dbc601cce9f7d9baa3
2 changes: 1 addition & 1 deletion cvat-cli/requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
cvat-sdk~=2.9.0
Pillow>=10.0.1
Pillow>=10.1.0
setuptools>=65.5.1 # not directly required, pinned by Snyk to avoid a vulnerability
2 changes: 1 addition & 1 deletion cvat-sdk/requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

attrs >= 21.4.0
packaging >= 21.3
Pillow >= 10.0.1
Pillow >= 10.1.0
platformdirs >= 2.1.0
tqdm >= 4.64.0
tuspy == 0.2.5 # have it pinned, because SDK has lots of patched TUS code
Expand Down
2 changes: 1 addition & 1 deletion cvat/requirements/base.in
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ opencv-python-headless~=4.8
patool==1.12

pdf2image==1.14.0
Pillow>=10.0.1
Pillow>=10.1.0
psutil==5.9.4
psycopg2-binary==2.9.5
python-ldap==3.4.3
Expand Down
2 changes: 1 addition & 1 deletion tests/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pytest-cov==4.1.0
requests==2.31.0
deepdiff==5.6.0
boto3==1.17.61
Pillow==10.0.1
Pillow==10.1.0
python-dateutil==2.8.2
pyyaml==6.0.0
numpy==1.22.0
1 change: 0 additions & 1 deletion tests/python/rest_api/test_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,6 @@ def test_can_create_task_with_big_images(self):
chunk_image = chunk_zip.read(infos[0])
assert chunk_image == image_bytes

@pytest.mark.skip(reason="need to wait new Pillow release till 15 October 2023")
def test_can_create_task_with_exif_rotated_tif_image(self):
task_spec = {
"name": f"test {self._USERNAME} to create a task with exif rotated tif image",
Expand Down
2 changes: 1 addition & 1 deletion utils/dataset_manifest/requirements.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
av==9.2.0 # Pinned for the whole CVAT
natsort>=8.0.0
opencv-python-headless>=4.4.0.42
Pillow>=10.0.1
Pillow>=10.1.0
tqdm>=4.58.0
2 changes: 1 addition & 1 deletion utils/dataset_manifest/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ numpy==1.22.4
# via opencv-python-headless
opencv-python-headless==4.8.1.78
# via -r utils/dataset_manifest/requirements.in
pillow==10.0.1
pillow==10.1.0
# via -r utils/dataset_manifest/requirements.in
tqdm==4.66.1
# via -r utils/dataset_manifest/requirements.in
2 changes: 1 addition & 1 deletion utils/dicom_converter/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy==1.22.0
Pillow==10.0.1
Pillow==10.1.0
pydicom==2.1.2
tqdm==4.60.0
Loading