perform some updates on exodus-core#105
Conversation
|
Hi @arthru and thanks for working on this! I don't understand why you remove the |
|
Hey 👋 PEP 517 promotes pyproject.toml in place of setup.py This PEP has been approved in september 2017, almost 8 years ago, so it is time to use it ! (moreover, I don't remember how we used to work with setup.py, so it feels easier for me...) |
codeurimpulsif
left a comment
There was a problem hiding this comment.
Looks good for me, can you please solve the conflict?
Then I will merge it!
|
Direct dependencies are listed in pyproject.toml file (at https://github.com/Exodus-Privacy/exodus-core/pull/105/files#diff-50c86b7ed8ac2cf95bd48334961bf0530cdc77b5a56f852c5c61b89d735fd711R12 ) and requirements.txt contains all the dependency tree with version pinned I saw in Exodus that Pipfile and Pipfile.lock are in use, I could replace the requirements.txt file by Pipfile.lock if preferred. Shall I do that ? |
Oh ok, it's more clear for me, thanks.
If it's ok for you yes it could be cool, we use Pipfile everywhere else, an harmonization would be perfect! Thanks |
|
I think on the matter I saw lately the Python community move to @arthru This means here the |
|
there is not such thing as a standard practice with pinning dependencies in the python world requirements.txt and Pipfile.lock seems to me the most usable file formats it seems that uv generates the exact same file (see https://docs.astral.sh/uv/pip/compile/#locking-requirements ) as does pip-compile (provided in pip-tools) |
|
Yep, and we don't want to move from Pipfile for now ^^ |
|
I don't get what you said about pipfile because there is no Pifile in this repo I just updated the requirements.txt file because it was present should I add a pipfile ? or pipfile.lock ? |
|
Yes, you can add it if you want. I said so because we already have Pipfile everywhere else on all Exodus Privacy projects. It seems this one is the only one still using requirements.txt, so it would be cool if we change this ^^ |
see Exodus-Privacy/exodus#655