Closed jaypatel24 closed 2 years ago
Changing the version to not import from pyetrade solved this for me.
https://github.com/jaypatel24/pyetrade/commit/6d92003f751f351198d6690d0a111939c5778ca1
Are we okay hardcoding it in setup.py? I've also seen other projects use a __version__.py
file.
In my case I had to run both:
pip install xmltodict
pip install jxmlease
This was with a conda env and python 3.8.5
fixed in v1.3.5 sorry about the delay in fixing this.
When installing with pip, the requirements for pyetrade are not automatically downloaded.
If I manually install them before installing pyetrade (e.g.
pip install requests_oauthlib
) , then installation succeeds.How can we get the dependencies to automatically be installed first when running
pip install pyetrade
?