-
Notifications
You must be signed in to change notification settings - Fork 26
ENH: Define all dependencies in pyproject.toml
#132
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
Draft
philippesamuel
wants to merge
5
commits into
py-pdf:main
Choose a base branch
from
philippesamuel:use_uv
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
d5ab23b
add dependencies to pyproject.toml
philippesamuel 0c68a9d
delete `./requirements/`
philippesamuel 429156d
update references to `requirements/` in docs
philippesamuel 4059a5e
update references to `requirements/` in CI files
philippesamuel 41563c0
update uv usage in CI/CD
philippesamuel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
We should not duplicate dependency information in both this file and the
requirements/
directory.I'm OK to make the switch from
requirements/
to[dependency-groups]
, but then:requirements/
directory should be removed.github/workflows/github-ci.yaml
should be updated to use[dependency-groups]
and notrequirements/
.readthedocs.yaml
should be updated to use[dependency-groups]
and notrequirements/
Makefile
should be updated to use[dependency-groups]
and notrequirements/
docs/dev/intro.md
&docs/dev/testing.md
should be updated to use[dependency-groups]
and notrequirements/
Either we perform all those changes at once in this PR, or else the changes related to
[dependency-groups]
&uv.lock
should be droppedUh oh!
There was an error while loading. Please reload this page.
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 @Lucas-C, thank you for your review. In my opinion, it would be a good idea to switch from
requirements/
to[dependency-groups]
, sincepip 25.1
started supporting[dependency-groups]
inpyproject.toml
. This would provide a seamless experience for developers using both pip and uv.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 @Lucas-C. I'm tracking down references to
requirements/
and I found some in theMakefile
. I'm not entirely sure how to deal with them:pdfly/Makefile
Lines 1 to 5 in 05b4fee
Some options:
pip-compile
commands:maint: pre-commit autoupdate
pyproject.toml
:maint: pre-commit autoupdate pip-compile --extra=ci pyproject.toml pip-compile --extra=dev pyproject.toml pip-compile --extra=docs pyproject.toml
maint: pre-commit autoupdate uv lock
Which one aligns the best with the project?
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.
I think I'm getting ahead of myself. Here I'm dealing with possibly using uv for this project, instead of solving the issue with the python version. I'll update the PR and open another one to solve only #130.
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.
I created another, more concise PR here: #133
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.
Sorry for the delay in answering.
I merged your other PR, thank you.
Regarding those
pip-compile
commands, I think could get rid of them in favour of[dependency-groups]
inpyproject.toml