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
entries
In cosipy/config.py:
def get_entry_points(package_name: str = "cosipy"): """Get package entry points. Returns: Generator: All of the package's available entry points. """ if sys.version_info >= (3, 10): entries = entry_points(group="console_scripts") else: entries = entries["console_scripts"] entrypoints = ( ep for ep in entries if ep.name.startswith(package_name.upper()) or ep.name.startswith(package_name.lower()) or package_name.lower() in ep.name ) return entrypoints
entries is not defined in python3.9. Will fix.
The text was updated successfully, but these errors were encountered:
fix(config): entries object does not exist in python3.9 code
b6ea834
Fixes cryotools#76
ed92aad
Successfully merging a pull request may close this issue.
In cosipy/config.py:
entries
is not defined in python3.9. Will fix.The text was updated successfully, but these errors were encountered: