Skip to content
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

Add and use requirements.txt #357

Merged
merged 1 commit into from
May 3, 2024
Merged

Add and use requirements.txt #357

merged 1 commit into from
May 3, 2024

Conversation

ericcornelissen
Copy link
Contributor

NOTE: I'm not very experienced with Python dependency management and pip. My goal here is similar to #351 but for pip.

This adds a requirements.txt file to pin Python dependencies, direct and transitive. This was achieved by, in a clean Docker image, first running pip3 freeze to get a list of irrelevant packages, then running the existing pip3 install jsonschema pytest (from CI) command, and finally running pip3 freeze again to get this project's dependencies (by omitting those from the first pip3 freeze list).

Both CIs have been updated to use the requirements.txt file to install dependencies. Besides improving reproducibility, this also avoids duplication.

The benefit of doing this is that the same versions of Python dependencies will always be used for this project (assuming pip respects the requirements). If the registry is trusted you can also be sure that the same source code is always run (however the absence of local checksums means this isn't the case if the registry isn't trusted).

Add a `requirements.txt` file to pin dependencies, direct and
transitive. This was achieved by, in a clean Docker image, first running
`pip3 freeze` to get irrelevant packages, then running the existing
`pip3 install` (from CI) command, and then running `pip3 freeze` again
to get this project's dependencies.

Both CIs have been updated to use the requirements.txt file to install
dependencies. Besides improving reproducibility, this also avoids
duplication.

The benefit of doing this is that the same versions of Python
dependencies will always be used for this project. If the registry is
trusted you can also be sure that the same source code is always run
(the absence of local checksums means this isn't the case if the
registry isn't trusted).
@monperrus monperrus merged commit e7a5674 into monperrus:master May 3, 2024
2 checks passed
@monperrus
Copy link
Owner

thanks a lot @ericcornelissen

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants