-
Notifications
You must be signed in to change notification settings - Fork 6
Use PEP518 and Poetry instead requirements.txt and setuptools #26
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
base: main
Are you sure you want to change the base?
Conversation
|
Can you separate the poetry stuff from the rest? We need to investigate more before switching to poetry, since we had issues with it in the past. |
|
No, because although PEP518 allows you to use other backends, the pyproject.toml has been configured to use Poetry |
ioggstream
left a comment
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.
Can we split the pyproject.toml and the poetry stuff?
| "Operating System :: OS Independent", | ||
| ] | ||
| [tool.poetry.dependencies] | ||
| python = "^3.11" |
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.
@henryx We need to support at least py3.8.
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.
@ioggstream consider adding this information somewhere in the README.md
Consider that Python 3.8 already reached EOL: https://endoflife.date/python
| requires = ["poetry-core>=1.0.0"] | ||
| build-backend = "poetry.core.masonry.api" | ||
|
|
||
| [tool.poetry] |
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.
Wrong section? (a legacy one?)
looked weird and https://python-poetry.org/docs/basic-usage/ uses [project]
Fixes issue #25