We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
setuptools
Importing the limits library in any environment causes the following error:
limits
ModuleNotFoundError: No module named 'pkg_resources'
This is identical to this issue, and resolved as specified (with respect to your environment; i.e. adding setuptools as a dependency to your project).
Importing the limits library should cause no issues once it is properly installed.
Declare a dependency on setuptools in the setup.py
setup.py
The text was updated successfully, but these errors were encountered:
Ignore the former two commits; these were tests for my sake, and have been replaced by the third and final commit.
Sorry, something went wrong.
[#93] Add setuptools as a dependency (#94)
37a1645
Successfully merging a pull request may close this issue.
Issue
Importing the
limits
library in any environment causes the following error:This is identical to this issue, and resolved as specified (with respect to your environment; i.e. adding
setuptools
as a dependency to your project).Expected Behavior
Importing the
limits
library should cause no issues once it is properly installed.Resolution
Declare a dependency on
setuptools
in thesetup.py
The text was updated successfully, but these errors were encountered: