-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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 poetry.lock #835
Support poetry.lock #835
Conversation
22005a2
to
143d0f8
Compare
41083eb
to
88427c7
Compare
Rebased onto master (
|
Rebased onto master (af860be) |
Poetry 1.0.0b2 was released on 2019-10-11: https://github.com/sdispater/poetry/releases/tag/1.0.0b2 |
Poetry 1.0.0b3 was released on 2019-10-25: https://github.com/sdispater/poetry/releases/tag/1.0.0b3 |
Poetry 1.0.0b4 was released on 2019-11-08: https://github.com/sdispater/poetry/releases/tag/1.0.0b4 |
ae5b3cd
to
3998f12
Compare
|
Hey @CaseyFaist, are you still planning to merge this series of PRs? If so, do you have an approximate ETA? Thanks! |
Add two test cases for projects using poetry as the build backend: - testPoetry: project without dependencies - testPoetryLock: project with dependencies, using a poetry.lock file
Add two test cases for projects using flit as the build backend: - testFlit: project without dependencies - testFlitRequires: project with dependencies
Check that pinned requirements are honored when poetry.lock is present. Request an outdated version of marshmallow in poetry.lock (3.0.0). Check that the outdated version is installed, rather than a newer version also satisfying the version constraint in pyproject.toml (^3.0.0).
Install pyproject.toml-based projects using `pip install .`. Do not use a requirements.txt for this. The requirements.txt file is needed to handle pinned versions extracted from the poetry.lock file. Note that we cannot simply append `.` to the exported requirements.txt file. Currently pip requires that either all requirements have a hash or none. Including `.` would thus force us to omit hashes for all requirements.
If a poetry.lock file is present, use the Poetry CLI to export the pinned requirements to a requirements.txt file. If the project already contains a requirements.txt, use that and ignore poetry.lock. Poetry is not used to install the project because it does not clean up stale requirements. This means that requirements need to be exported anyway, for the `pip-uninstall` step. Since we only use Poetry to export a requirements.txt file, ignore the Poetry version specified in pyproject.toml. Install a pre-release of 1.0.0 because the export command is not available before 1.0.0a0. Note that supporting pyproject.toml-based installations is not enough to handle pinned requirements: When pip installs a pyproject.toml-style project using the process described in PEP 517, it only uses Poetry to build a wheel. The wheel contains the version constraints from pyproject.toml, not the pinned versions from poetry.lock.
3998f12
to
cd23a90
Compare
Poetry 1.0.0b8 was released a few days back (fixes at least one bug) |
Poetry 1.0 was officially released today, formalizing the export command. |
Could someone give us an idea of when this PR will be merged ? |
A stop-gap solution: https://elements.heroku.com/buildpacks/moneymeets/python-poetry-buildpack |
What does heroku currently default to (prior to this PR being merged) if their is a |
@yunti this PR is nowhere near to be merged, so if both files are present currently Heroku defaults to using |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi! Thank you for the PR. We're in the process of moving to Cloud Native Buildpacks, so all development effort is focused there at the moment, and eventually they will replace the current buildpacks. As such, we're only making minimal changes to the current buildpacks for now.
For more information, see:
#834 (review)
@cjolowicz Thank you for the PR! A lot has changed since it was opened - amongst other things the Poetry bug mentioned in the OP was fixed some time ago, so it's now viable to use Poetry to install the dependencies rather than exporting to a requirements file and then using pip to install that. I've just added Poetry support in #1682 :-) |
Export pinned requirements from
poetry.lock
torequirements.txt
. This PR is a follow-up to #833 and #834.If a
poetry.lock
file is present, use the Poetry CLI to export the pinned requirements to arequirements.txt
file. If the project already contains arequirements.txt
, use that and ignorepoetry.lock
.Install
pyproject.toml
-based projects usingpip install .
, instead of creating arequirements.txt
containing.
. Therequirements.txt
file is needed to handle pinned versions extracted from thepoetry.lock
file.Closes #796
CI is broken for PRs from another repository, see this comment. Please check the corresponding PR in my fork to verify CI:
Why is this necessary at all, after supporting PEP 517 installations?
Note that supporting
pyproject.toml
-based installations is not enough to handle pinned requirements: When pip installs apyproject.toml
-style project using the process described in PEP 517, it only uses Poetry to build a wheel. The wheel contains the version constraints frompyproject.toml
, not the pinned versions frompoetry.lock
. See python-poetry/poetry#537Why not use Poetry to install?
Poetry is not used to install the project because it does not clean up stale requirements. This means that requirements need to be exported anyway, for the
pip-uninstall
step. See python-poetry/poetry#648Why use Poetry 1.0.0b1 instead of the version specified in pyproject.toml?
Since we only use Poetry to export a
requirements.txt
file, ignore the Poetry version specified inpyproject.toml
. Install a pre-release of1.0.0
because the export command is not available before1.0.0a0
.Update: Poetry 1.0.0 has been released. Also, the version specified in
pyproject.toml
is a minimum version, so it would not make sense to install it anyway.Why not append
.
to the exported requirements file?Note that we cannot simply append
.
to the exportedrequirements.txt
file. Currently pip requires that either all requirements have a hash or none. Including.
would thus force us to omit hashes for all requirements. See pypa/pip#4995Test case
Add a test to check that pinned requirements are honored when
poetry.lock
is present. Request an outdated version ofmarshmallow
inpoetry.lock
(3.0.0
). Check that the outdated version is installed, rather than a newer version also satisfying the version constraint inpyproject.toml
(^3.0.0
).