-
Notifications
You must be signed in to change notification settings - Fork 518
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
Collections Deprecation Warning #202
Labels
Comments
Relevant PR : #212 Thanks |
jaraco
pushed a commit
to pmxbot/pmxbot
that referenced
this issue
Nov 2, 2018
Why isn't this fixed yet? |
9 tasks
Fixed by #181 |
jenisys
added a commit
to behave/behave
that referenced
this issue
May 6, 2023
* Causes problems for Python >= 3.8 due to bundled YAML RELATED TO: collections.Hashable (DEPRECATED) * Use invoke >= 1.7.0 (that fixes the problem) SEE: * https://www.pyinvoke.org/changelog.html * yaml/pyyaml#202
jenisys
added a commit
to behave/behave
that referenced
this issue
May 6, 2023
* Causes problems for Python >= 3.8 due to bundled YAML RELATED TO: collections.Hashable (DEPRECATED) * Use invoke >= 1.7.0 (that fixes the problem) SEE: * https://www.pyinvoke.org/changelog.html * yaml/pyyaml#202
zhwei820
pushed a commit
to zhwei820/behave
that referenced
this issue
Jan 8, 2024
* Causes problems for Python >= 3.8 due to bundled YAML RELATED TO: collections.Hashable (DEPRECATED) * Use invoke >= 1.7.0 (that fixes the problem) SEE: * https://www.pyinvoke.org/changelog.html * yaml/pyyaml#202
jenisys
added a commit
to behave/behave
that referenced
this issue
May 26, 2024
* Causes problems for Python >= 3.8 due to bundled YAML RELATED TO: collections.Hashable (DEPRECATED) * Use invoke >= 1.7.0 (that fixes the problem) SEE: * https://www.pyinvoke.org/changelog.html * yaml/pyyaml#202
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Warning
/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/yaml/constructor.py:126: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated, and in 3.8 it will stop working
Offending Code
In constructor.py , line 126:
if not isinstance(key, collections.Hashable):
The text was updated successfully, but these errors were encountered: