Skip to content

Commit

Permalink
add requests to install_requires
Browse files Browse the repository at this point in the history
  • Loading branch information
gokselcoban committed Apr 17, 2023
1 parent 4978909 commit 3d42421
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 black==23.3.0 py-algorand-sdk==${{ matrix.py-algorand-sdk-version }}
pip install flake8 black==23.3.0 py-algorand-sdk==${{ matrix.py-algorand-sdk-version }} requests
- name: Run flake8
run: flake8 ${{ github.workspace }} --ignore=E501,F403,F405,E126,E121,W503,E203
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
project_urls={
"Source": "https://github.com/tinyman/tinyman-py-sdk",
},
install_requires=["py-algorand-sdk >= 1.10.0"],
install_requires=["py-algorand-sdk >= 1.10.0", "requests >= 2.0.0"],
packages=setuptools.find_packages(),
python_requires=">=3.8",
package_data={
Expand Down

0 comments on commit 3d42421

Please sign in to comment.