Is this project still maintained?
I observed the following:
- The last commit is more than 2 years old, last release 4 years.
- There are unmerged Pull Requests i.e. for Python 3.12 Support
- The mailling list is down
- The maintainer website is in "maintaince mode"
- People ask about a maintained fork
So the question is: Is this project still maintained?
If not is the owner of this project willing to transfer ownership to and are there any person who are willing to take it? (I am currently don't intend to do this but want to open up dialog).
Huh, for some reason I stopped getting github notifications. Found these by chance.
I'll start by getting jenkins back up.
Stable release issue is still: #705
As for the question: I still have spyne in production but it's been humming along quite nicely for some time, so I didn't need to do any work. So is it maintained? Somewhat.
Would it be possile to have new release with Python312/313 support?
We are using it in one project, but had to manually fix some imports like in service.py:
from spyne.util.six.moves.collections_abc import Sequence
Replaced with:
from collections.abc import Sequence
Otherwise it's still working for us with Python313