idank / bashlex

Python parser for bash
GNU General Public License v3.0
550 stars 94 forks source link

importing the ABCs from 'collections' instead of from 'collections.abc' error #57

Closed prabhu closed 2 years ago

prabhu commented 4 years ago

Any plans to fix this?

bashlex/utils.py:3: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.9 it will stop working
    class typedset(collections.MutableSet):

bashlex/utils.py:51
bashlex/utils.py:51: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.9 it will stop working
    class frozendict(collections.Mapping):

-- Docs: https://docs.pytest.org/en/latest/warnings.html
tirkarthi commented 4 years ago

This seems to be fixed in master branch with https://github.com/idank/bashlex/commit/475a149ad1873d70a4b241c75bcf819986a42241

idank commented 4 years ago

Are we just missing a release then?

hugovk commented 2 years ago

:rocket: This was released in version 0.15:

https://github.com/idank/bashlex/compare/0.14...0.15

This issue can now be closed.