Skip to content

Add missing direct dependencies #233

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

Merged
merged 1 commit into from
Jan 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,19 @@ dependencies = [
"beautifulsoup4>=4.9.3,<5.0",
"lxml>=4.6.3,<6.0",
"optimize-images>=1.3.6,<2.0",
# regex has no upper-bound due to "date-based" release numbers, no semver, so their
# regex has no upper-bound due to "date-based" release numbers, no semver, so their
# promise is that they will never (or always) break the API, and the API is very
# limited and we use only a very small subset of it.
"regex>=2020.7.14",
"pymupdf>=1.24.0,<2.0",
"CairoSVG>=2.2.0,<3.0",
"beartype==0.19.0",
# youtube-dl should be updated as frequently as possible
"yt-dlp"
"yt-dlp",
"pillow>=7.0.0,<12.0",
"urllib3>=1.26.5,<2.3.0",
"piexif==1.1.3", # this dep is a nightmare in terms of release management, better pinned just like in optimize-images anyway
"idna>=2.5,<4.0"
]
dynamic = ["authors", "classifiers", "keywords", "license", "version", "urls"]

Expand Down