abydos icon indicating copy to clipboard operation
abydos copied to clipboard

Incompatible with Python 3.10

Open christianbundy opened this issue 3 years ago • 3 comments

This module uses:

from collections import Iterable

But in Python 3.10, we need:

from collections.abc import Iterable

christianbundy avatar Dec 29 '21 22:12 christianbundy

Oops -- should've mentioned this, but I saw that this was fixed in #265 -- @chrislit can I do anything to help cut a new release?

christianbundy avatar Dec 29 '21 22:12 christianbundy

Hi @christianbundy, I'm working on a new release now, but it may take a while. There's a lot of broken stuff that needs fixing (mostly unit tests & CI stuff; the tests seem to pass on 3.9 & 3.10, though), I'll also do a round of optimizations now that I'm dropping support for 3.5, and I'll try to clear some of the other issues raised recently.

chrislit avatar Jan 04 '22 19:01 chrislit

Anything I can help with? My goal is to avoid adding Git to my build environment just to pull from GitHub, so even pushing an alpha pre-release to PyPI would be super helpful.

christianbundy avatar Mar 23 '22 15:03 christianbundy