-
Notifications
You must be signed in to change notification settings - Fork 12
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
Fix versioneer for python >= 3.12 #86
Conversation
for more information, see https://pre-commit.ci
That PR should yield a new release to restore installs on Python 3.12+ and on
|
One more point now that I see the CIs, how about bumping between 3.9 and 3.12 the CIs? 3.7 already reached its end of life: https://devguide.python.org/versions/ And most projects maintain the 4 last minor version of Python, see e.g. Also, I think
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for finding that!
It's a bit hard to maintain for all python versions, and while most packages maintain for newer versions, most users might use an older version. I will give a go to update and check during the holidays.
Up to them to update or to stick to old versions ;) |
Closes #
configparser.SafeConfigParser
has been deprecated in python 3.11 and removed in 3.12; which is now failing theconda-forge
release workflows and any installs on Python 3.12.Proposed Changes
ConfigParser
, new alias ofSafeConfigParser
if the latter is absent fromconfigparser
namespace.Change Type
bugfix
(+0.0.1)minor
(+0.1.0)major
(+1.0.0)refactoring
(no version update)test
(no version update)infrastructure
(no version update)documentation
(no version update)other
Checklist before review