Skip to content

Commit

Permalink
Merge pull request #10 from bitcoin-sv/requirements-fix
Browse files Browse the repository at this point in the history
Unify dependency definitions in setup.cfg
  • Loading branch information
yusufidimaina9989 authored Sep 15, 2024
2 parents a7c2ce8 + e0a31f6 commit b84df0e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 21 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
python -m pip install flake8
pip install '.[test]'
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
13 changes: 0 additions & 13 deletions requirements.txt

This file was deleted.

16 changes: 10 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,16 @@ keywords =
python_requires = >=3.9
include_package_data = True
install_requires =
pycryptodomex
coincurve
requests
tests_require =
pytest
ecdsa
pycryptodomex>=3.20.0
coincurve>=20.0.0
requests>=2.32.3
aiohttp>=3.10.5

[options.extras_require]
test =
pytest>=8.3.3
pytest-asyncio>=0.24.0
ecdsa>=0.19.0

[options.package_data]
* = hd/wordlist/*.txt

0 comments on commit b84df0e

Please sign in to comment.