Skip to content

Commit e2d229d

Browse files
authored
bump remotecv dependencies (#86)
1 parent 3e656ed commit e2d229d

File tree

3 files changed

+18
-21
lines changed

3 files changed

+18
-21
lines changed

.github/workflows/release.yml

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ jobs:
4242
strategy:
4343
matrix:
4444
python_version:
45-
- "3.8"
4645
- "3.9"
4746
- "3.10"
4847
- "3.11"

.github/workflows/unittest.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
python-version:
13-
- "3.8"
1413
- "3.9"
1514
- "3.10"
1615
- "3.11"

setup.py

+18-19
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,28 @@
1313

1414

1515
TESTS_REQUIREMENTS = [
16-
"black==22.*,>=22.1.0",
17-
"celery==5.*,>=5.2.7",
18-
"coverage==6.*,>=6.3.2",
19-
"flake8==6.*,>=6.1.0",
20-
"pre-commit==2.*,>=2.20.0",
16+
"black==23.*,>=23.12.1",
17+
"celery==5.*,>=5.3.6",
18+
"coverage==7.*,>=7.4.0",
19+
"flake8==7.*,>=7.0.0",
20+
"pre-commit==3.*,>=3.6.0",
2121
"preggy==1.*,>=1.4.4",
22-
"pylint==3.*,>=3.0.1",
23-
"pyssim==0.*,>=0.4",
24-
"pytest-asyncio==0.*,>=0.18.0",
25-
"pytest-cov==3.*,>=3.0.0",
26-
"pytest==7.*,>=7.0.0",
27-
"thumbor==7.*",
22+
"pylint==3.*,>=3.0.3",
23+
"pyssim==0.*,>=0.7",
24+
"pytest-asyncio==0.*,>=0.23.0",
25+
"pytest-cov==4.*,>=4.1.0",
26+
"pytest==7.*,>=7.4.0",
27+
"thumbor==7.*,>=7.7.2",
2828
]
2929

3030
RUNTIME_REQUIREMENTS = [
31-
"opencv-python-headless==4.*,>=4.2.0",
32-
"Pillow==10.*,>=10.0.1",
33-
"pyres==1.*,>=1.5.0",
31+
"opencv-python-headless==4.*,>=4.9.0.80",
32+
"Pillow==10.*,<10.1.0",
33+
"pyres==1.*,>=1.5",
3434
"redis==5.*,>=5.0.1",
35-
"sentry-sdk==0.*,>=0.14.2",
36-
"click==8.*",
37-
"click-option-group==0.5.*",
35+
"sentry-sdk==1.*,>=1.39.1",
36+
"click==8.*,>=8.1.7",
37+
"click-option-group==0.*,>=0.5.6",
3838
]
3939

4040
setup(
@@ -44,7 +44,7 @@
4444
url="https://github.com/thumbor/remotecv",
4545
version=version,
4646
description="remotecv is an OpenCV worker for facial and feature recognition",
47-
python_requires="==3.*,>=3.8.0",
47+
python_requires="==3.*,>=3.9.0",
4848
author="Bernardo Heynemann",
4949
author_email="[email protected]",
5050
license="MIT",
@@ -57,7 +57,6 @@
5757
"Operating System :: MacOS",
5858
"Operating System :: POSIX :: Linux",
5959
"Programming Language :: Python :: 3",
60-
"Programming Language :: Python :: 3.8",
6160
"Programming Language :: Python :: 3.9",
6261
"Programming Language :: Python :: 3.10",
6362
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)