Closed dhensen closed 4 years ago
I was running into this issue locally:
Pipfile:
... pydantic-odm = {editable= true, path = "/Users/dino/work/pydantic-odm"} ...
Running pipenv in my other project was consistently failing. There was a backtrace saying ModuleNotFoundError: No module named 'setuptools'
ModuleNotFoundError: No module named 'setuptools'
Turns out there is some quirk with setuptools==50.0. For more information see: https://github.com/pypa/setuptools/issues/2353
I think this is also the reason why this build fails: https://travis-ci.com/github/i8enn/pydantic-odm/builds/187856817 (you can see the ModuleNotFoundError here also)
I was running into this issue locally:
Pipfile:
Running pipenv in my other project was consistently failing. There was a backtrace saying
ModuleNotFoundError: No module named 'setuptools'
Turns out there is some quirk with setuptools==50.0. For more information see: https://github.com/pypa/setuptools/issues/2353
I think this is also the reason why this build fails: https://travis-ci.com/github/i8enn/pydantic-odm/builds/187856817 (you can see the ModuleNotFoundError here also)