We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Modern python package can contain a pyproject.toml instead of a requirements.txt or a Pipfle, cf https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/
Do you have plan to support those this in the buildpack?
The text was updated successfully, but these errors were encountered:
it seems that there is a PR in the heroku buildpack for this heroku#834
Sorry, something went wrong.
Scalingo actually supports pyproject.toml if you add a requirements.txt file containing just a . (dot).
pyproject.toml
requirements.txt
.
And in pyproject.toml you use:
[build-system] requires = ["setuptools"] build-backend = "setuptools.build_meta"
An alternative way is to use Poetry with a poetry.lock file in the repository. Poetry will read pyproject.toml itself.
poetry.lock
Successfully merging a pull request may close this issue.
Modern python package can contain a pyproject.toml instead of a requirements.txt or a Pipfle, cf https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/
Do you have plan to support those this in the buildpack?
The text was updated successfully, but these errors were encountered: