Skip to content
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 lock -r warning being logged to stdout instead of stderr #5091

Merged
merged 3 commits into from
May 2, 2022
Merged

Fix lock -r warning being logged to stdout instead of stderr #5091

merged 3 commits into from
May 2, 2022

Conversation

tomarad
Copy link
Contributor

@tomarad tomarad commented May 1, 2022

The issue

In #5069, a deprecation message was added when pipenv lock -r is run.
The warning message is written to stdout instead of stderr, breaking scripts that run commands like pipenv lock -r > requirements.txt.

The fix

This PR directs the warning message to stderr instead of stdout.
I also de-dented the message to make it look nicer:

Old (notice the newline at the top):


            Warning: The lock flag -r/--requirements will be deprecated in a future version
            of pipenv in favor of the new requirements command. For more info see
            https://pipenv.pypa.io/en/latest/advanced/#generating-a-requirements-txt
            NOTE: the requirements command parses Pipfile.lock directly without performing any
            locking operations. Updating packages should be done by running pipenv lock

New:

Warning: The lock flag -r/--requirements will be deprecated in a future version
of pipenv in favor of the new requirements command. For more info see
https://pipenv.pypa.io/en/latest/advanced/#generating-a-requirements-txt
NOTE: the requirements command parses Pipfile.lock directly without performing any
locking operations. Updating packages should be done by running pipenv lock.

@matteius
Copy link
Member

matteius commented May 1, 2022

Thanks @tomarad -- would you add a bugfix news fragment for this and reference the PR number (unless there is an issue report)?

@tomarad
Copy link
Contributor Author

tomarad commented May 1, 2022

Done @matteius.

@jaredthecoder
Copy link

jaredthecoder commented May 1, 2022

Slightly annoying, this bit me today here - actions/setup-python#398. If anyone sees this, be sure your pipenv in your actions is completely up to date as pip install pipenv as of 30 minutes ago will still produce this message to stdout, breaking your CI pipeline if you then install the locked requirements with pip.

Or even better use something like pipenv requirements -i https://pypi.org/simple > requirements.txt from https://pipenv.pypa.io/en/latest/advanced/#generating-a-requirements-txt

@ImreC
Copy link
Contributor

ImreC commented May 1, 2022

Wow, should have realized this. Apologies and thanks for the fix

@matteius
Copy link
Member

matteius commented May 1, 2022

@ImreC If it makes you feel better I've done the same thing in a recent release in a refactor of a print statement.

@ImreC
Copy link
Contributor

ImreC commented May 1, 2022

@matteius thanks! It is an easy thing to miss I guess. @tomarad if you add a newline in the newsfile, the checks will pass.

@alex9311
Copy link

alex9311 commented May 2, 2022

hey all, I'm still getting this issue while using AWS CDK. It uses pipenv lock -r to generate a requirements file.
https://github.com/aws/aws-cdk/blob/c3c4a97e65071fcab35212be82dea7b29454786f/packages/%40aws-cdk/aws-lambda-python/lib/packaging.ts#L40

In my logs I can see that pipenv-2022.4.30 is being installed. Does this fix need to be part of a new pipenv release? It seems 4.30 is the latest version which I assume doesn't include this fix

@guyc
Copy link

guyc commented May 3, 2022

The release notes show that this PR (#5091) did not make it into the most recent release (v2022.4.30).

This issue is currently breaking our CI/CD deployments which use the serverless-python-requirements plugin.

@matteius
Copy link
Member

matteius commented May 3, 2022

@guyc I just tagged a new release for this issue. 2022.5.2

@rafsanbhuiyan12
Copy link

  1. Frist uninstall pipenv: 'pip uninstall pipenv` OR 'brew uninstall pipenv' OR 'sudo uninstall pipenv'
  2. Second install pipenv==2022.5.2: sudo pip install pipenv==2022.5.2

pipenv: 2022.5.2 works great!! ⚡️🚀🤘😃

jeffwidman added a commit to dependabot/dependabot-core that referenced this pull request Aug 8, 2023
In the versions between what we are currently on in `dependaobt-core`
and the latest versions of `pipenv`, they deprecated and then completely
removed the `pipenv lock [-d]` command in favor of `pipenv requirements
[--dev]` command.

Since our current version of `pipenv` supports the `pipenv requirements`
command, let's proactively switch to it now. That will make the future
upgrade in #7715
easier.

More context:
* pypa/pipenv#5069
* pypa/pipenv#5091
* pypa/pipenv#5198
* pypa/pipenv#5200
jeffwidman added a commit to dependabot/dependabot-core that referenced this pull request Aug 8, 2023
In the versions between what we are currently on in `dependaobt-core`
and the latest versions of `pipenv`, they deprecated and then completely
removed the `pipenv lock [-d]` command in favor of `pipenv requirements
[--dev]` command.

Since our current version of `pipenv` supports the `pipenv requirements`
command, let's proactively switch to it now. That will make the future
upgrade in #7715
easier.

More context:
* pypa/pipenv#5069
* pypa/pipenv#5091
* pypa/pipenv#5198
* pypa/pipenv#5200
jeffwidman added a commit to dependabot/dependabot-core that referenced this pull request Aug 8, 2023
In the versions between what we are currently on in `dependaobt-core`
and the latest versions of `pipenv`, they deprecated and then completely
removed the `pipenv lock [-d]` command in favor of `pipenv requirements
[--dev]` command.

Since our current version of `pipenv` supports the `pipenv requirements`
command, let's proactively switch to it now. That will make the future
upgrade in #7715
easier.

More context:
* pypa/pipenv#5069
* pypa/pipenv#5091
* pypa/pipenv#5198
* pypa/pipenv#5200
jeffwidman added a commit to dependabot/dependabot-core that referenced this pull request Aug 8, 2023
In the versions between what we are currently on in `dependaobt-core`
and the latest versions of `pipenv`, they deprecated and then completely
removed the `pipenv lock [-d]` command in favor of `pipenv requirements
[--dev]` command.

Since our current version of `pipenv` supports the `pipenv requirements`
command, let's proactively switch to it now. That will make the future
upgrade in #7715
easier.

More context:
* pypa/pipenv#5069
* pypa/pipenv#5091
* pypa/pipenv#5198
* pypa/pipenv#5200
brettfo pushed a commit to brettfo/dependabot-core that referenced this pull request Oct 11, 2023
…ot#7764)

In the versions between what we are currently on in `dependaobt-core`
and the latest versions of `pipenv`, they deprecated and then completely
removed the `pipenv lock [-d]` command in favor of `pipenv requirements
[--dev]` command.

Since our current version of `pipenv` supports the `pipenv requirements`
command, let's proactively switch to it now. That will make the future
upgrade in dependabot#7715
easier.

More context:
* pypa/pipenv#5069
* pypa/pipenv#5091
* pypa/pipenv#5198
* pypa/pipenv#5200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

7 participants