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

Commit d35f00d

Browse files
committed
Temporarily use py3 serpent version from serpent PR
There is sort of a deadlock for getting py3 support between `ethereum/pyethereum` and `ethereum/serpent`, due to a circular test dependency. In order to break the circle, this can be used to create a release, which in turn can be used by `serpent`s build. see #357
1 parent 08acb35 commit d35f00d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dev_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ coveralls
33
pytest>=2.9.0
44
pytest-catchlog==1.2.2
55
pytest-timeout==1.0.0
6-
https://github.com/ethereum/serpent/tarball/develop
6+
https://github.com/pipermerriam/serpent/tarball/piper/add-travis-ci-testing

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
install_requires = set(x.strip() for x in open('requirements.txt'))
99
install_requires_replacements = {
1010
'https://github.com/ethereum/ethash/tarball/master': 'pyethash',
11-
'git+https://github.com/ulope/secp256k1-py#egg=secp256k1': 'secp256k1'
1211
}
1312
install_requires = [install_requires_replacements.get(r, r) for r in install_requires]
1413

1514
# dev requirements
1615
tests_require = set(x.strip() for x in open('dev_requirements.txt'))
16+
tests_require_replacements = dict()
1717
tests_require_replacements = {
18-
'https://github.com/ethereum/serpent/tarball/develop': 'ethereum-serpent>=1.8.1',
18+
'https://github.com/pipermerriam/serpent/tarball/piper/add-travis-ci-testing': 'ethereum-serpent>=1.8.1'
1919
}
2020
tests_require = [tests_require_replacements.get(r, r) for r in tests_require]
2121

0 commit comments

Comments
 (0)