-
Notifications
You must be signed in to change notification settings - Fork 68
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
Issues on Python 3.10 due to six 1.15.0 #78
Comments
Thanks for reporting this @fpgmaas. Looks like we have the six dependency for I'm guessing that we can just add the Or should be just be using |
Thanks for the quick feedback @MrPowers. I agree with you that seeing if the dependency can be removed altogether is cleaner. I can try to see if we can replace it with |
Yea, six is a Python 2/3 compatibility library. chispa only supports Python >=3.7 now, so hopefully we can get rid of six. |
I think I'm able to fix this, however I am running into some issue with running the tests on newer version of Python. The version in |
importing
chispa
can cause issues on Python 3.10 due to the use ofsix
1.15.0
. See also secdev/scapy#3502 and this blogpost. As the blogpost patches, the issue is patched insix
1.16.0
.The text was updated successfully, but these errors were encountered: