Skip to content

Commit

Permalink
Remove eth-typing constraints
Browse files Browse the repository at this point in the history
  • Loading branch information
LefterisJP committed Jan 19, 2019
1 parent 21acedb commit a9e8c17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
1 change: 0 additions & 1 deletion requirements.txt
Expand Up @@ -10,5 +10,4 @@ psutil==5.4.3


#constraints
eth-typing==1.3.0
setuptools==40.4.2
8 changes: 2 additions & 6 deletions setup.py
@@ -1,6 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os

from setuptools import setup


Expand All @@ -12,12 +13,7 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()


install_requires_replacements = {
(
'git+https://github.com/ethereum/eth-typing.git'
'@a4eba0cd42c34e051ac8818177c8eb95ac67f5b5#egg=eth-typing'
): 'eth-typing',
}
install_requires_replacements = {}

install_requirements = list(set(
install_requires_replacements.get(requirement.strip(), requirement.strip())
Expand Down

0 comments on commit a9e8c17

Please sign in to comment.