|
|
|
|
|
by notatallshaw
8 days ago
|
|
> Their infrastructure (pip) getting worse and worse Hi, I'm a pip maintainer, can you please report any issue you think is happening in recent versions of pip: https://github.com/pypa/pip/ I particularly work on performance and stability and think we've been making big strides over the last two years > getting everyone to install private venv's for every app, leading to missing security updates, because updates just break everything. venv's stop your OS tooling from breaking, Linux distro maintainers pushed Python packaging to not allow installing into the system packages by default, and they weren't wrong. All these other problems are solved with proper use of a lock file (which are now standardized, and you can generate and install from them in the latest version of pip), and/or use a project tool (uv, poetry, etc.). |
|