Skip to content

Commit 1f4dd11

Browse files
authored
[Optional] update package dependencies (#71)
* update package dependencies * bump supported python version to 3.8
1 parent 7f2ebf6 commit 1f4dd11

File tree

4 files changed

+16
-15
lines changed

4 files changed

+16
-15
lines changed

.github/workflows/pull-request.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.7", "3.11"]
11+
python-version: ["3.8", "3.11"]
1212
steps:
1313
- uses: actions/checkout@v3
1414
- name: Set up Python ${{ matrix.python-version }}
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
strategy:
3333
matrix:
34-
python-version: ["3.7", "3.11"]
34+
python-version: ["3.8", "3.11"]
3535
steps:
3636
- uses: actions/checkout@v3
3737
- name: Set up Python ${{ matrix.python-version }}

requirements/dev.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
-r prod.txt
2-
black>=22.8.0
2+
black>=23.7.0
33
pandas>=1.0.0
4-
pylint>=2.15.0
5-
pytest>=7.1.3
6-
python-dotenv>=0.21.0
7-
mypy>=0.971
4+
pylint>=2.17.5
5+
pytest>=7.4.1
6+
python-dotenv>=1.0.0
7+
mypy>=1.5.1
88
aiounittest>=1.4.2

requirements/prod.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
aiohttp>=3.8.3
2-
types-python-dateutil>=2.8.19
3-
types-PyYAML>=6.0.11
4-
types-requests>=2.28.9
1+
aiohttp>=3.8.5
2+
types-python-dateutil>=2.8.19.14
3+
types-PyYAML>=6.0.12.11
4+
types-requests>=2.31.0.2
55
python-dateutil>=2.8.2
6-
requests>=2.28.1
6+
requests>=2.31.0
77
ndjson>=0.3.1

setup.cfg

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,16 @@ zip_safe = False
2020
packages=find:
2121
platforms = any
2222
install_requires =
23+
aiohttp>=3.8.3
2324
types-python-dateutil>=2.8.19
2425
types-PyYAML>=6.0.11
2526
types-requests>=2.28.9
27+
types-Deprecated>=1.2.9.3
2628
python-dateutil>=2.8.2
2729
requests>=2.28.1
28-
web3>=5.30.0
2930
ndjson>=0.3.1
30-
aiohttp>=3.8.3
31-
python_requires = >=3.7
31+
Deprecated>=1.2.14
32+
python_requires = >=3.8
3233
setup_requires =
3334
setuptools_scm
3435

0 commit comments

Comments
 (0)