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
Describe the bug Iterable abstract class was removed from collections in Python 3.10, so I can't import hts.
Iterable
collections
import hts
To Reproduce I'm using Python 3.10.8, and pip installed scikit-hts today. To reproduce the bug one should simply call import hts
Potential solution Check python version when importing and import Iterable from collections.abc if python's version > 3.9.
collections.abc
The text was updated successfully, but these errors were encountered:
I unfortunately do not have time anymore to dedicate to this project, contributions are welcome
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Iterable
abstract class was removed fromcollections
in Python 3.10, so I can'timport hts
.To Reproduce
I'm using Python 3.10.8, and pip installed scikit-hts today.
To reproduce the bug one should simply call
import hts
Potential solution
Check python version when importing and import
Iterable
fromcollections.abc
if python's version > 3.9.The text was updated successfully, but these errors were encountered: