Closed kraftp closed 1 month ago
From the github action run
From the github action run
Yes, we're adding compatibility with old versions, not changing our dependency. Of course the new version is preferred, but now we work with the old version.
from https://pdm-project.org/en/latest/usage/lockfile
PDM installs packages exclusively from the existing lock file named pdm.lock. This file serves as the sole source of truth for installing dependencies.
from https://pdm-project.org/en/latest/usage/lockfile
PDM installs packages exclusively from the existing lock file named pdm.lock. This file serves as the sole source of truth for installing dependencies.
Sure, that's what PDM's local installation does, but the actual MANIFEST
file distributed with the wheel is based off the dependencies in pyproject.toml
.
Yes, we're adding compatibility with old versions, not changing our dependency. Of course the new version is preferred, but now we work with the old version.
AFAIK, changing the pyproject.toml
file doesn't actually change anything if there's a pdm.lock
file present.
Yes, we're adding compatibility with old versions, not changing our dependency. Of course the new version is preferred, but now we work with the old version.
AFAIK, changing the
pyproject.toml
file doesn't actually change anything if there's apdm.lock
file present.
Nope, the MANIFEST
in the wheel is based off of pyproject.toml
. Unpack the wheel and see for yourself :)
Add compatibility with older versions of psycopg as newer versions don't support all Python installations.