From a54ebdb5e49925f07e4a946afb5f3c4d90f26c74 Mon Sep 17 00:00:00 2001 From: Ben Smith Date: Tue, 5 Sep 2023 22:10:48 +0200 Subject: [PATCH 1/3] update package dependencies --- requirements/dev.txt | 10 +++++----- requirements/prod.txt | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) 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 From 0d00ff06c52449ba6ea06aa90b26efc7ae001ba2 Mon Sep 17 00:00:00 2001 From: Ben Smith Date: Tue, 5 Sep 2023 22:16:57 +0200 Subject: [PATCH 2/3] bump supported python version to 3.8 --- .github/workflows/pull-request.yaml | 2 +- setup.cfg | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 1d1ef84..d744549 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@v2 - name: Set up Python ${{ matrix.python-version }} 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 From b0dbf7ac919ff5e4f7231fb4452a29b32045ef96 Mon Sep 17 00:00:00 2001 From: Ben Smith Date: Tue, 5 Sep 2023 22:19:28 +0200 Subject: [PATCH 3/3] missed one --- .github/workflows/pull-request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index d744549..815069f 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -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@v2 - name: Set up Python ${{ matrix.python-version }}