-
Notifications
You must be signed in to change notification settings - Fork 141
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
pyscss not usable in Python 3.10 #422
Comments
here's the warning in 3.9:
|
athos-ribeiro
added a commit
to athos-ribeiro/pyScss
that referenced
this issue
Nov 9, 2021
Python 3.10 removed the aliases to collections.abc from the collections module. See [1] for reference. * Closes Kronuz#422 [1] https://docs.python.org/3/whatsnew/3.10.html#removed Signed-off-by: Athos Ribeiro <[email protected]>
A fix is available at #411 |
This should be closed per #411 (comment) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this line is not compatible with 3.10:
pyScss/scss/types.py
Line 6 in 6bf001e
File "/home/classic/.venv3100/lib/python3.10/site-packages/scss/types.py", line 6, in
from collections import Iterable
ImportError: cannot import name 'Iterable' from 'collections' (/opt/python-3.10.0/lib/python3.10/collections/init.py)
The text was updated successfully, but these errors were encountered: