Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Optional] update package dependencies #71

Merged
merged 3 commits into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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@v2
- 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@v2
- 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
Loading