From e299a1f8a187161f4bf26dcbeed23f7678d68fe7 Mon Sep 17 00:00:00 2001 From: geramanisn Date: Mon, 16 Sep 2024 18:28:43 +0300 Subject: [PATCH] Update dependencies --- .github/workflows/build.yml | 2 +- requirements.txt | 6 +++--- setup.py | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4b785d7..b75b6f0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: '3.12.5' + python-version: '3.12.6' - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/requirements.txt b/requirements.txt index 3b76175..c46440b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ opencv-python==4.10.0.84 -numpy==2.1.0 +numpy==2.1.1 matplotlib==3.9.2 -pytest==8.3.2 +pytest==8.3.3 coverage==7.6.1 -pylint==3.2.6 +pylint==3.2.7 mypy==1.11.2 diff --git a/setup.py b/setup.py index c15cc0a..a7006ba 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ 'for denoising and inpainting greyscale images'), url='https://github.com/NickGeramanis/denoising-inpainting-lbp', license='GPLV3', - python_requires='==3.12.5', + python_requires='==3.12.6', install_requires=['opencv-python==4.10.0.84', - 'numpy==2.1.0', + 'numpy==2.1.1', 'matplotlib==3.9.2'])