From 1f4dd116171c7921ffa6dcc97d0567fbc2e03130 Mon Sep 17 00:00:00 2001 From: Benjamin Smith Date: Wed, 6 Sep 2023 13:56:05 +0200 Subject: [PATCH] [Optional] update package dependencies (#71) * update package dependencies * bump supported python version to 3.8 --- .github/workflows/pull-request.yaml | 4 ++-- requirements/dev.txt | 10 +++++----- requirements/prod.txt | 10 +++++----- setup.cfg | 7 ++++--- 4 files changed, 16 insertions(+), 15 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 801b80f..a9670a6 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -8,7 +8,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.11"] + python-version: ["3.8", "3.11"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} @@ -31,7 +31,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.11"] + python-version: ["3.8", "3.11"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/requirements/dev.txt b/requirements/dev.txt index f6c6750..a3583c5 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -1,8 +1,8 @@ -r prod.txt -black>=22.8.0 +black>=23.7.0 pandas>=1.0.0 -pylint>=2.15.0 -pytest>=7.1.3 -python-dotenv>=0.21.0 -mypy>=0.971 +pylint>=2.17.5 +pytest>=7.4.1 +python-dotenv>=1.0.0 +mypy>=1.5.1 aiounittest>=1.4.2 diff --git a/requirements/prod.txt b/requirements/prod.txt index ca2573b..cb24d76 100644 --- a/requirements/prod.txt +++ b/requirements/prod.txt @@ -1,7 +1,7 @@ -aiohttp>=3.8.3 -types-python-dateutil>=2.8.19 -types-PyYAML>=6.0.11 -types-requests>=2.28.9 +aiohttp>=3.8.5 +types-python-dateutil>=2.8.19.14 +types-PyYAML>=6.0.12.11 +types-requests>=2.31.0.2 python-dateutil>=2.8.2 -requests>=2.28.1 +requests>=2.31.0 ndjson>=0.3.1 \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 01b1bd5..bbcdba3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -20,15 +20,16 @@ zip_safe = False packages=find: platforms = any install_requires = + aiohttp>=3.8.3 types-python-dateutil>=2.8.19 types-PyYAML>=6.0.11 types-requests>=2.28.9 + types-Deprecated>=1.2.9.3 python-dateutil>=2.8.2 requests>=2.28.1 - web3>=5.30.0 ndjson>=0.3.1 - aiohttp>=3.8.3 -python_requires = >=3.7 + Deprecated>=1.2.14 +python_requires = >=3.8 setup_requires = setuptools_scm