-
Notifications
You must be signed in to change notification settings - Fork 251
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: added 3.11 to list of available pythons #477
Conversation
Shouldn't this list be updated to? poetry-core/src/poetry/core/version/helpers.py Lines 13 to 26 in d6d33de
|
2a4bc87
to
5367933
Compare
Good catch 👍 |
5367933
to
5e133e5
Compare
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [poetry](https://python-poetry.org/) ([source](https://github.com/python-poetry/poetry), [changelog](https://python-poetry.org/history/)) | patch | `1.3.1` -> `1.3.2` | --- ### Release Notes <details> <summary>python-poetry/poetry</summary> ### [`v1.3.2`](https://github.com/python-poetry/poetry/blob/HEAD/CHANGELOG.md#poetry-core-132-httpsgithubcompython-poetrypoetry-corereleasestag132) [Compare Source](python-poetry/poetry@1.3.1...1.3.2) - Add `3.11` to the list of available Python versions ([#​477](python-poetry/poetry-core#477)). - Fix an issue where caret constraints of pre-releases with a major version of 0 resulted in an empty version range ([#​475](python-poetry/poetry-core#475)). </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC45NC4wIiwidXBkYXRlZEluVmVyIjoiMzQuOTQuMCJ9--> Reviewed-on: https://git.walbeck.it/walbeck-it/docker-python-poetry/pulls/573 Co-authored-by: renovate-bot <[email protected]> Co-committed-by: renovate-bot <[email protected]>
Python 3.11 is just around the corner, so we have to update this list.
Package.AVAILABLE_PYTHONS
is needed in two places:poetry-core/src/poetry/core/packages/package.py
Line 309 in 4535724
I would prefer a more generic way. So if anyone has a suggestion ...
Downstream tests are fixed in python-poetry/poetry#6561