Skip to content
This repository was archived by the owner on May 23, 2023. It is now read-only.

Commit ae5bfb7

Browse files
committed
fix: pyethash version reqirement
1 parent 780cc4e commit ae5bfb7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ install:
88
- pip install -r requirements.txt
99

1010
script:
11-
- coverage run --source pyethereum setup.py test
11+
- coverage run --source ethereum setup.py test
1212
#- tox -e $TOX_ENV
1313

1414
after_success:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def run_tests(self):
3434
install_requires_replacements = {
3535
'https://github.com/ethereum/pyrlp/tarball/develop': 'rlp>=0.3.7',
3636
'https://github.com/ethereum/serpent/tarball/develop': 'ethereum-serpent>=1.8.1',
37-
'https://github.com/ethereum/ethash/tarball/master': 'pyethash>=23'}
37+
'https://github.com/ethereum/ethash/tarball/master': 'pyethash'}
3838

3939
install_requires = [install_requires_replacements.get(r, r) for r in install_requires]
4040

0 commit comments

Comments
 (0)