From e2d229d52614b068c9ce21210cceebf83f1dc31e Mon Sep 17 00:00:00 2001 From: Pedro Paulo <62268905+devppjr@users.noreply.github.com> Date: Mon, 8 Jan 2024 16:15:38 -0300 Subject: [PATCH] bump remotecv dependencies (#86) --- .github/workflows/release.yml | 1 - .github/workflows/unittest.yaml | 1 - setup.py | 37 ++++++++++++++++----------------- 3 files changed, 18 insertions(+), 21 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cff96dd..b50f2a5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,7 +42,6 @@ jobs: strategy: matrix: python_version: - - "3.8" - "3.9" - "3.10" - "3.11" diff --git a/.github/workflows/unittest.yaml b/.github/workflows/unittest.yaml index b5fece4..63728f4 100644 --- a/.github/workflows/unittest.yaml +++ b/.github/workflows/unittest.yaml @@ -10,7 +10,6 @@ jobs: fail-fast: false matrix: python-version: - - "3.8" - "3.9" - "3.10" - "3.11" diff --git a/setup.py b/setup.py index 6a4271f..29b8c22 100644 --- a/setup.py +++ b/setup.py @@ -13,28 +13,28 @@ TESTS_REQUIREMENTS = [ - "black==22.*,>=22.1.0", - "celery==5.*,>=5.2.7", - "coverage==6.*,>=6.3.2", - "flake8==6.*,>=6.1.0", - "pre-commit==2.*,>=2.20.0", + "black==23.*,>=23.12.1", + "celery==5.*,>=5.3.6", + "coverage==7.*,>=7.4.0", + "flake8==7.*,>=7.0.0", + "pre-commit==3.*,>=3.6.0", "preggy==1.*,>=1.4.4", - "pylint==3.*,>=3.0.1", - "pyssim==0.*,>=0.4", - "pytest-asyncio==0.*,>=0.18.0", - "pytest-cov==3.*,>=3.0.0", - "pytest==7.*,>=7.0.0", - "thumbor==7.*", + "pylint==3.*,>=3.0.3", + "pyssim==0.*,>=0.7", + "pytest-asyncio==0.*,>=0.23.0", + "pytest-cov==4.*,>=4.1.0", + "pytest==7.*,>=7.4.0", + "thumbor==7.*,>=7.7.2", ] RUNTIME_REQUIREMENTS = [ - "opencv-python-headless==4.*,>=4.2.0", - "Pillow==10.*,>=10.0.1", - "pyres==1.*,>=1.5.0", + "opencv-python-headless==4.*,>=4.9.0.80", + "Pillow==10.*,<10.1.0", + "pyres==1.*,>=1.5", "redis==5.*,>=5.0.1", - "sentry-sdk==0.*,>=0.14.2", - "click==8.*", - "click-option-group==0.5.*", + "sentry-sdk==1.*,>=1.39.1", + "click==8.*,>=8.1.7", + "click-option-group==0.*,>=0.5.6", ] setup( @@ -44,7 +44,7 @@ url="https://github.com/thumbor/remotecv", version=version, description="remotecv is an OpenCV worker for facial and feature recognition", - python_requires="==3.*,>=3.8.0", + python_requires="==3.*,>=3.9.0", author="Bernardo Heynemann", author_email="heynemann@gmail.com", license="MIT", @@ -57,7 +57,6 @@ "Operating System :: MacOS", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",