Skip to content

Commit

Permalink
read requirements from the file, unpeg pytest deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Ed Noepel committed Dec 2, 2020
1 parent 239fa51 commit 479de86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
requests==2.22.0
requests-mock==1.6.0
six==1.12
six>=1.12,<2
web3>=5.0.0,<6.0.0
eth-account>=0.4.0,<0.6.0
pytest>=4.4.0,<5.0.0
tox==3.13.2
setuptools==41.0.1
setuptools>=41.0.1,<51.0.0
eth_keys
14 changes: 2 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,11 @@

LONG_DESCRIPTION = open('README.md', 'r').read()

REQUIREMENTS = [
'requests==2.22.0',
'requests-mock==1.6.0',
'six==1.12',
'web3==5.0.0',
'eth-account==0.4.0',
'pytest>=4.4.0,<5.0.0',
'tox==3.13.2',
'setuptools==41.0.1',
'eth_keys'
]
REQUIREMENTS = open('requirements.txt', 'r').read().split('\n')

setup(
name='dydx-python',
version='0.11.2',
version='0.11.3',
packages=find_packages(),
package_data={
'dydx': ['abi/*.json'],
Expand Down

0 comments on commit 479de86

Please sign in to comment.