-
Notifications
You must be signed in to change notification settings - Fork 50
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
Support Python 3.12 and drop Python 3.8 #256
Conversation
I spent four hours trying to fix this and not a single step closer. I'm getting really annoyed with poetry. |
It seems we can only support Python 3.12 by dropping support for Python 3.8, because the requirements export functionality in Poetry can't work with disjunctive sets of dependencies for different Python versions. As such, this pull request is now also about dropping Python 3.8, which might require more changes to the code. |
As described in actions/runner-images#9770, `macos-latest` was missing cached Python versions 3.9 and 3.10, forcing temporary use of `macos-13`. As the Python versions have been added, we can again use `macos-latest`.
Quality Gate passedIssues Measures |
@benvanwerkhoven this PR is now ready to be merged. |
Tested locally and on the DAS, it works! Thanks! |
The current pyproject.toml locked our Python version to less then 3.12. This pull should add support for Python 3.12 and also enables the CI to test against 3.12.