I have a project that uses multiple requirements. The are as follows:
dependencies = [
"urllib3 >=1.25.10",
"cachetools",
"six",
"lxml",
"cryptography",
"ipywidgets >=7",
"widgetsnbextension >=3",
"pandas >=1",
"numpy >=1.16.2",
"matplotlib",
"keyring >=19",
"lerc",
"ujson >=3",
"jupyterlab",
"python-certifi-win32",
'pywin32 >=223;platform_system=="Windows"',
"pyshp >=2",
"geomet",
"requests",
"requests-oauthlib",
"requests_toolbelt",
"requests_ntlm",
'requests-negotiate-sspi;platform_system=="Windows"',
'requests-kerberos;platform_system=="Windows"',
'winkerberos;platform_system=="Windows"',
"requests-gssapi",
]
When I use conda build with a meta.yaml file similar to what is shown in python 3.9 the build fails due to dependency issues.
What I am trying to figure out is what is causing the conflict? Is there a simple output/print out that can just find the dependency issues? The conda build
command just spits out hundreds of lines of code stating every version of each package.