Update CI workflows, update assert_winfo_similar #218
Merged
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.
Updated outdated actions in the CI workflow. All CI warnings should be resolved.
I moved the deployment job to the main CI workflow to ensure that deployed wheels have the exact same test data used for tests by the CI.
I've taken some steps to support reproducible test data. This is incomplete and will take a lot of effort to finish if it's possible in the first place.
Added Python 3.12 and 3.13 to tests.
I've removed the deprecated MacOS 11 runners before support for them ends entirely.
I was unable to add MacOS 13 because of failing tests.
While I was working on this PR, setuptools had an update which broke
assert_winfo_similar
. The "Generator" field can now be "setuptools <version>" instead of "bdist_wheel <version>" since setuptools 70.1. I've decided to refactor the entire function. This can be a separate PR if necessary, but all future tests are going to fail withAssertionError: assert 'bdist_wheel (70.1.0)' == 'setuptools (70.1.0)'
until this is merged.