pdfly's pyproject.toml allows for python==3.7.0 and higher, but 'pypdf>=5.1.0' requires python>=3.8.
After cloning the project, I get an error, when trying to sync dependencies with uv:
$ uv sync
× No solution found when resolving dependencies for split (python_full_version == '3.7.*'):
╰─▶ Because only the following versions of pypdf[full] are available:
pypdf[full]<=5.1.0
pypdf[full]==5.2.0
pypdf[full]==5.3.0
pypdf[full]==5.3.1
pypdf[full]==5.4.0
pypdf[full]==5.5.0
pypdf[full]==5.6.0
and the requested Python version (>=3.7.0) does not satisfy Python>=3.8, we can conclude that pypdf[full]>=5.1.0
cannot be used.
And because your project depends on pypdf[full]>=5.1.0, we can conclude that your project's requirements are
unsatisfiable.
pdfly'spyproject.tomlallows for python==3.7.0 and higher, but 'pypdf>=5.1.0' requires python>=3.8.After cloning the project, I get an error, when trying to sync dependencies with uv: