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

Commit bbf1ee4

Browse files
committed
python3 compatible serpent
1 parent 79e78c3 commit bbf1ee4

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
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: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515
# dev requirements
1616
tests_require = set(x.strip() for x in open('dev_requirements.txt'))
1717
tests_require_replacements = {
18-
'https://github.com/ethereum/serpent/tarball/develop': 'ethereum-serpent>=1.8.1'}
18+
# 'https://github.com/ethereum/serpent/tarball/develop': 'ethereum-serpent>=1.8.1',
19+
# THIS SHOULD NOT BE MERGED
20+
'https://github.com/pipermerriam/serpent/tarball/piper/add-travis-ci-testing': 'ethereum-serpent>=1.8.1',
21+
}
1922
tests_require = [tests_require_replacements.get(r, r) for r in tests_require]
2023

2124
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.

0 commit comments

Comments
 (0)