-
Notifications
You must be signed in to change notification settings - Fork 293
Translate Pipfiles to Requirements in modules #341
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
Translate Pipfiles to Requirements in modules #341
Conversation
The plugin does not properly handle Pipfiles that sit in submodules since the pipenv integration does not anticipate submodules. This commit reworks the pipenv integration such that submodules are supported. This changes will convert Pipfiles into requirements as they are parsed by `pip.js` instead of doing it as a pre-processing step. This is done since the submodule discovery logic sits in pip.js.
4c0c95a
to
64631a5
Compare
Updates the requirements on [is-wsl](https://github.com/sindresorhus/is-wsl) to permit the latest version. - [Release notes](https://github.com/sindresorhus/is-wsl/releases) - [Commits](sindresorhus/is-wsl@v1.1.0...v2.0.0) Signed-off-by: dependabot[bot] <[email protected]>
1103c4c
to
ebae488
Compare
I've no clue why the tests cannot find |
c0c00c4
to
ebae488
Compare
Is this fix still being implemented as I have this exact issue. Much prefer pipenv over requirements.txt files but this is forcing my hand to use requirements.txt without this fix getting implemented |
This comment has been minimized.
This comment has been minimized.
Any news about this issue? Would be nice to have this functionality merged 😄 |
will this ever be merged? |
Hey @leaveningagent - it's been a long time since this PR was proposed. I'm going to close it, if you feel like the issue is valid, please open a new issue or a new PR against the latest main branch. Thanks 🙇 |
The plugin does not properly handle Pipfiles that sit in submodules
since the pipenv integration does not anticipate submodules.
This commit reworks the pipenv integration such that submodules are
supported. This changes will convert Pipfiles into requirements as
they are parsed by
pip.js
instead of doing it as a pre-processingstep. This is done since the submodule discovery logic sits in pip.js.
This closes #268.