-
-
Notifications
You must be signed in to change notification settings - Fork 129
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
Don't depend on pkg_resources #185
Comments
We should probably write the version into a file at build time instead with something like: [build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
[tool.setuptools_scm]
write_to = "user_sessions/version.py"
version_scheme = "no-guess-dev"
from . import version
__version__ = version.version |
The error you're encountering, Steps to Fix the Error
Example Configuration for
|
Expected Behavior
I should be able to run a command like
python manage.py shell
without any errors.Current Behavior
Your Environment
Relevant: python/cpython#95299
The text was updated successfully, but these errors were encountered: