Hello. First of all, I´d like to thank you guys for the awesome library !
I am having an issue while trying to use it, I´ve managed to fix it by manually searching for conflicting dependencies inside pipenv, which leads me to believe this issue may be related to undeclared dependencies withing the build-system you guys are using on the package !
Here is the issue I face to run the app after installing pyxirr:
PS C:\codebase\my_path> & C:/Users/myuser/.virtualenvs/my_path-r724wWIu/Scripts/python.exe my_path/main.py
Traceback (most recent call last):
File "C:\Users\myuser\.virtualenvs\my_path-r724wWIu\Lib\site-packages\requests_toolbelt\_compat.py", line 48, in <module>
from requests.packages.urllib3.contrib import appengine as gaecontrib
ImportError: cannot import name 'appengine' from 'requests.packages.urllib3.contrib' (C:\Users\myuser\.virtualenvs\my_path-r724wWIu\Lib\site-packages\urllib3\contrib\__init__.py)
from ..util.multipart_stream import MultipartStream
File "C:\Users\myuser\.virtualenvsmy_path-r724wWIu\Lib\site-packages\boxsdk\util\multipart_stream.py", line 3, in <module>
from requests_toolbelt.multipart.encoder import MultipartEncoder
File "C:\Users\myuser\.virtualenvs\my_path-r724wWIu\Lib\site-packages\requests_toolbelt\__init__.py", line 12, in <module>
from .adapters import SSLAdapter, SourceAddressAdapter
File "C:\Users\myuser\.virtualenvs\my_path-r724wWIu\Lib\site-packages\requests_toolbelt\adapters\__init__.py", line 12, in <module>
from .ssl import SSLAdapter
File "C:\Users\myuser\.virtualenvs\my_path-r724wWIu\Lib\site-packages\requests_toolbelt\adapters\ssl.py", line 16, in <module>
from .._compat import poolmanager
File "C:\Users\myuser\.virtualenvs\my_path-r724wWIu\Lib\site-packages\requests_toolbelt\_compat.py", line 50, in <module>
from urllib3.contrib import appengine as gaecontrib
ImportError: cannot import name 'appengine' from 'urllib3.contrib' (C:\Users\myuser\.virtualenvs\my_path-r724wWIu\Lib\site-packages\urllib3\contrib\__init__.py)
steps to reproduce:
with pipenv, try to install pyxirr while having a conflicting package that uses an undeclared dependency. When running the main.py script you will start having these errors due to uncompatible libs (in my case, boxsdk 1.8-2.2)
Hello. First of all, I´d like to thank you guys for the awesome library ! I am having an issue while trying to use it, I´ve managed to fix it by manually searching for conflicting dependencies inside
pipenv
, which leads me to believe this issue may be related to undeclared dependencies withing the build-system you guys are using on the package !Here is the issue I face to run the app after installing
pyxirr
:steps to reproduce:
boxsdk 1.8-2.2
)