Pin Python dependencies in requirements.txt - #675
Conversation
Signed-off-by: arijitroy003 <arijitroy003@gmail.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Code Review
This pull request pins the versions of several mkdocs and related documentation dependencies in requirements.txt to ensure reproducible builds. The reviewer pointed out that the requirements.txt file is missing a trailing newline, which should be added to comply with POSIX standards and prevent future diff issues.
| mkdocs-glightbox==0.5.2 | ||
| python-markdown-math==0.9 | ||
| mkdocs-same-dir==0.1.5 | ||
| mkdocs-git-revision-date-localized-plugin==1.5.3 No newline at end of file |
There was a problem hiding this comment.
The requirements.txt file is missing a newline at the end of the file. According to POSIX standards, files should end with a newline character to ensure compatibility with various command-line tools and to prevent future diffs from showing unnecessary changes when new dependencies are added.
mkdocs-git-revision-date-localized-plugin==1.5.3
Summary
Pins Python dependency versions in requirements.txt for reproducible builds.
Changes
Testing
Verified by grep that all dependencies are now pinned with == specifiers.