refactor: once again rework get-poetry.py#6378
Merged
neersighted merged 1 commit intopython-poetry:masterfrom Sep 3, 2022
Merged
refactor: once again rework get-poetry.py#6378neersighted merged 1 commit intopython-poetry:masterfrom
neersighted merged 1 commit intopython-poetry:masterfrom
Conversation
c4e16bc to
50a2ecb
Compare
The new plan is described in python-poetry#6377. With these changes, we see the following behaviors: ```sh $ python get-poetry.py Retrieving Poetry metadata This installer is deprecated, and scheduled for removal from the Poetry repository on or after January 1, 2023. See python-poetry#6377 for details. You should migrate to https://install.python-poetry.org instead, which supports all versions of Poetry, and allows for `self update` of versions 1.1.7 or newer. Instructions are available at https://python-poetry.org/docs/#installation. Without an explicit version, this installer will attempt to install the latest version of Poetry. This installer cannot install Poetry 1.2.0a1 or newer (and installs will be unable to `self update` to 1.2.0a1 or newer). To continue to use this deprecated installer, you must specify an explicit version with --version <version> or POETRY_VERSION=<version>. Alternatively, if you wish to force this deprecated installer to use the latest installable release, set GET_POETRY_IGNORE_DEPRECATION=1. Version 1.2.0 is not supported by this installer! Please specify a version prior to 1.2.0a1 to continue! ``` ```sh $ python get-poetry.py --version 1.2.0 Retrieving Poetry metadata This installer is deprecated, and scheduled for removal from the Poetry repository on or after January 1, 2023. See python-poetry#6377 for details. You should migrate to https://install.python-poetry.org instead, which supports all versions of Poetry, and allows for `self update` of versions 1.1.7 or newer. Instructions are available at https://python-poetry.org/docs/#installation. Without an explicit version, this installer will attempt to install the latest version of Poetry. This installer cannot install Poetry 1.2.0a1 or newer (and installs will be unable to `self update` to 1.2.0a1 or newer). To continue to use this deprecated installer, you must specify an explicit version with --version <version> or POETRY_VERSION=<version>. Alternatively, if you wish to force this deprecated installer to use the latest installable release, set GET_POETRY_IGNORE_DEPRECATION=1. Version 1.2.0 is not supported by this installer! Please specify a version prior to 1.2.0a1 to continue! ``` ```sh $ python get-poetry.py --version 1.1.15 Retrieving Poetry metadata This installer is deprecated, and scheduled for removal from the Poetry repository on or after January 1, 2023. See python-poetry#6377 for details. You should migrate to https://install.python-poetry.org instead, which supports all versions of Poetry, and allows for `self update` of versions 1.1.7 or newer. Instructions are available at https://python-poetry.org/docs/#installation. [install of 1.1.15] ``` ```sh $ GET_POETRY_IGNORE_DEPRECATION=1 python get-poetry.py Retrieving Poetry metadata This installer is deprecated, and scheduled for removal from the Poetry repository on or after January 1, 2023. See python-poetry#6377 for details. You should migrate to https://install.python-poetry.org instead, which supports all versions of Poetry, and allows for `self update` of versions 1.1.7 or newer. Instructions are available at https://python-poetry.org/docs/#installation. Version 1.2.0 is available but is not supported by this installer! Version 1.1.15 will be installed as it is the latest version supported by this installer. This is not the latest version of Poetry! If you wish to install the latest version, you must move to the new installer as described above! [install of 1.1.15] ```
50a2ecb to
901bdf0
Compare
mkniewallner
approved these changes
Sep 3, 2022
3 tasks
|
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
The new plan is described in #6377.
With these changes, we see the following behaviors:
Closes #6314
Supersedes #6323