-
Notifications
You must be signed in to change notification settings - Fork 41
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Root cause failure using conda env export
#32
Comments
Poetry also gives this warning:
|
This is fixed on master, so using one of the following will resolve the Poetry warning for you.
ContextThis is happening because the PyPI released version of This is a very similar issue to this: Python-Markdown/markdown#1197 (also discussed here python-poetry/poetry#4777). This was fixed in the |
This was discovered while doing
conda env export
. It seems to fail whennb_black
is installed as described in this string but a solution was discovered. Is it possible you can do this simple fix in the next update?Manually editing the dependencies for nb_black from
Requires-Dist: yapf (>='0.28') ; python_version < "3.6"
Requires-Dist: black (>='19.3') ; python_version >= "3.6"
to
Requires-Dist: yapf (>=0.28) ; python_version < "3.6"
Requires-Dist: black (>=19.3) ; python_version >= "3.6"
in /Users/[USERNAME]/opt/anaconda3/envs/[ENVNAME]/lib/python3.6/site-packages/nb_black-1.0.7.dist-info/ resolves the issue as a work-around.
The relevant text was found in the METADATA file in this folder.
The text was updated successfully, but these errors were encountered: