You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yeah, massive pain for people like us (Facebook) who build all third party modules from sdsts and have a systems that enforces deps. This circular dep blows it up. We generally do this so we can run unit tests and verify the code is legit etc. :)
Should appdirs support installation/building without setuptools since setuptools now depends on appdirs? Maybe falling back to distutils?
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
This circular dependency is making building in my environment that checks for this much harder and hackier.
The text was updated successfully, but these errors were encountered: