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

Commit 0df1228

Browse files
committed
requirements for serpent, ethash from gh
1 parent 5e82393 commit 0df1228

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ pysha3
44
pytest
55
pytest-timeout
66
repoze.lru
7-
https://github.com/ethereum/pyrlp/tarball/develop
87
structlog>=15.0.0
9-
pyethash
108
coveralls
11-
ethereum-serpent>=1.7.7
9+
https://github.com/ethereum/pyrlp/tarball/develop
10+
https://github.com/ethereum/serpent/tarball/develop
11+
https://github.com/ethereum/ethash/tarball/develop

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ def run_tests(self):
2929
install_requires = set(x.strip() for x in open('requirements.txt'))
3030

3131
install_requires_replacements = {
32-
'https://github.com/ethereum/pyrlp/tarball/develop': 'rlp>=0.3.7'}
32+
'https://github.com/ethereum/pyrlp/tarball/develop': 'rlp>=0.3.7',
33+
'https://github.com/ethereum/serpent/tarball/develop': 'ethereum-serpent>=1.8.1',
34+
'https://github.com/ethereum/ethash/tarball/develop': 'pyethash>=23'}
3335
install_requires = [install_requires_replacements.get(r, r) for r in install_requires]
3436

3537
setup(name="ethereum",

0 commit comments

Comments
 (0)