Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What are you trying to accomplish?
#155
Adding support for Python 3.13
What approach did you choose and why?
I added 3.13 everywhere.
I had to adjust some calls to
exec
as a result of thelocals
changes that happened in 3.13.Otherwise the imports wouldn't result in changes to the
globals
, so subsequent calls wouldn't see the libraries as imported.I also had to pin the version of
setuptools
to an old version, since they dropped support for being used as a test runner in v72 (#147).What should reviewers focus on?
🤷, once this is merged, I'll rebase #154, and we should be able to get 2.3.2 released 🤞.
The impact of these changes
We'll have Python 3.13 in our tests and our builds.