Installing from git repo breaks when upgrading pip from version 21.2.4 to 21.3
See original GitHub issueEnvironment
- Pythonnet version: 3.0.0.dev1
- Python version: 3.9.7
- Operating System: Windows
- .NET Runtime: All
Details
This fails:
- python -m pip install pip==21.3
- pip install git+https://github.com/pythonnet/pythonnet
with error message:
Error reading git repository information: Unsupported repository version 1. Only versions up to 0 are supported.
I first filed the issue under the pip project, but there it got closed with a comment about it being a Python.NET build system issue.
Issue Analytics
- State:
- Created 2 years ago
- Comments:7 (2 by maintainers)
Top Results From Across the Web
Breaking editable installation with `No module named pip ...
I can reproduce the issue locally as well with Arch Linux, 21.3 fails, 21.2.4 works. This only happens in editable mode (using -e...
Read more >Pip broken after upgrade. Cannot unsinstall or ...
This seems to have completely broken my pip install and I cannot figure out how to reset it. $ pip3 --version pip 8.1.1...
Read more >pip install pip==1.0.2
pip. pip is a tool for installing and managing Python packages, such as those found in the Python Package Index. pip is a...
Read more >Changelog - pip documentation v23.2.1
Only calculate topological installation order, for packages that are going to be installed/upgraded. This fixes an AssertionError that occurred when determiningΒ ...
Read more >Failing image_build - Renku forum - Discourse
So this issue was originally introduced by a breaking change in setuptools 58 that broke quite a few old packages. We fixed it...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
As a possible workaround you can set the environment variable
EnableSourceControlManagerQueries
tofalse
:This is the root cause: https://github.com/dotnet/sourcelink/issues/771