-
Notifications
You must be signed in to change notification settings - Fork 478
Closed
Labels
bugSomething isn't workingSomething isn't workinghelp wantedExtra attention is neededExtra attention is needed
Description
Describe the bug
In the following example, the system's headers and library of gdal are in v3.2.2. Latest gdal is on v3.3.2, so is pygdal looking for this version, can't find it and breaks. Even when installed with pygdal==3.2.2.*
, pipx upgrade doesn't respect this limitation and the upgrade fails, since the installer can't find latest gdal:
_main__.GDALConfigError: Version mismatch 3.2.2 != 3.3.2
How to reproduce
$ apt-install libgdal-dev gdal-bin gdal-data # should be 3.2.2 on Debian
$ pipx install --include-deps pygdal==3.2.2.* # works
$ pipx upgrade pygdal # fails
It gets worse when pygdal has been injected into another package. This completely fails then:
$ pipx upgrade --include-injected --force mapproxy
Expected behavior
Read package_or_url
from pipx_metadata.json and limit it to the version stated in there.
Workarounds
pipx upgrade --pip-args 'install pygdal==3.2.2.*' pygdal
pipx upgrade --include-injected --pip-args 'install pygdal==3.2.2.*' mapproxy
~/.local/pipx/venvs/pygdal/pipx_metadata.json
{
"injected_packages": {},
"main_package": {
"app_paths": [],
"app_paths_of_dependencies": {
"numpy": [
{
"__Path__": "/home/tobwen/.local/pipx/venvs/pygdal/bin/f2py",
"__type__": "Path"
},
{
"__Path__": "/home/tobwen/.local/pipx/venvs/pygdal/bin/f2py3",
"__type__": "Path"
},
{
"__Path__": "/home/tobwen/.local/pipx/venvs/pygdal/bin/f2py3.9",
"__type__": "Path"
}
]
},
"apps": [],
"apps_of_dependencies": [
"f2py",
"f2py3",
"f2py3.9"
],
"include_apps": true,
"include_dependencies": true,
"package": "pygdal",
"package_or_url": "pygdal==3.2.2.*",
"package_version": "3.2.2.10",
"pip_args": [],
"suffix": ""
},
"pipx_metadata_version": "0.2",
"python_version": "Python 3.9.2",
"venv_args": []
}
edgarrmondragon
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinghelp wantedExtra attention is neededExtra attention is needed