Skip to content

Commit

Permalink
[Optional] update package dependencies (#71)
Browse files Browse the repository at this point in the history
* update package dependencies
* bump supported python version to 3.8
  • Loading branch information
bh2smith authored Sep 6, 2023
1 parent 7f2ebf6 commit 1f4dd11
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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 }}
Expand Down
10 changes: 5 additions & 5 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
@@ -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
10 changes: 5 additions & 5 deletions requirements/prod.txt
Original file line number Diff line number Diff line change
@@ -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
7 changes: 4 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 1f4dd11

Please sign in to comment.