Closed delan closed 3 years ago
Hello there,
Thank you for your contribution. We've been in low maintenance mode because of the original author leaving and the current devs being rather busy. Every bit of help is appreciated!
Our minimum version for Python actually has been 3.6 for a while because of our usage of pathlib. So, any reference to 3.5 is incorrect. There was a lot of references to it though, so we definitely have missed a few of them.
I'll push a new version to PyPi so people can use this fix.
Saving a tag on Python 3.9 currently fails with:
This is essentially because Thread.isAlive was renamed to Thread.is_alive. The new name was added in Python 2.6, then the old name was removed from the docs in Python 3.0, then it was removed entirely in Python 3.9. Thankfully that means our minimum of Python 3.5 won’t need to change.