Re: %pyproject_install: .dist-info vs .egg-info

2020-11-29 Thread Donald Stufft
> On Nov 29, 2020, at 5:00 PM, Felix Schwarz wrote: > > Hey, > > I just noticed that the new packaging macros create a .dist-info directory > instead of .egg-info. > > Just to be sure: There is no incompatibility between these two, right? So > setuptools-based code can still retrieve all th

Re: What is your opinion on "sudo pip" fix for Fedora 27?

2017-04-28 Thread Donald Stufft
hat needs to get done is for pip to get better at the concept of overlaying installs on sys.path. We shouldn’t need to uninstall something in the “Vendor site-packages” in order to install it into the “local site-packages” (And similarly for user site-packages). — Donald Stufft __

Re: What is your opinion on "sudo pip" fix for Fedora 27?

2017-04-27 Thread Donald Stufft
oint (and of course, an upgrade totally restores the files in /usr). — Donald Stufft ___ python-devel mailing list -- python-devel@lists.fedoraproject.org To unsubscribe send an email to python-devel-le...@lists.fedoraproject.org

Re: Unable to install packages in a Python 3 virtual environment created with venv module with --system-site-packages option

2017-02-10 Thread Donald Stufft
got to do it. It looks like it’s already been fixed upstream - https://bugs.python.org/issue24875 <https://bugs.python.org/issue24875>. — Donald Stufft ___ python-devel mailing list -- python-devel@lists.fedoraproject.org To unsubscribe send an email to python-devel-le...@lists.fedoraproject.org

Re: Making sudo pip Safe

2016-12-14 Thread Donald Stufft
> python-devel mailing list -- python-devel@lists.fedoraproject.org > To unsubscribe send an email to python-devel-le...@lists.fedoraproject.org — Donald Stufft ___ python-devel mailing list -- python-devel@lists.fedoraproject.org To unsubscribe send an email to python-devel-le...@lists.fedoraproject.org

Re: Making sudo pip Safe

2016-12-11 Thread Donald Stufft
If someone got this ready to merge I would be happy to merge it into pip upstream as well. Sent from my iPhone > On Dec 11, 2016, at 11:39 PM, Nick Coghlan wrote: > > Actually doing that would mean taking Donald's first pass at > implementing the `--global` switch, bringing it up to merge-rea

Re: Making sudo pip Safe

2016-12-10 Thread Donald Stufft
"--user" aren't automatically available. FWIW, I think Nathaniel? got the uh, Bash? Maintainers on Debian to add it to the default skel for users. — Donald Stufft ___ python-devel mailing list -- python-devel@lists.fe

Re: Upgrade pip in EPEL

2016-11-17 Thread Donald Stufft
-- > Orion Poplawski > Technical Manager 303-415-9701 x222 > NWRA, Boulder/CoRA Office FAX: 303-415-9702 > 3380 Mitchell Lane or...@nwra.com > Boulder, CO 80301 http://www.nwra.com — Donald Stufft _

Re: New (optional) python egg dependency generator for RPM

2015-11-17 Thread Donald Stufft
> On Nov 17, 2015, at 9:53 AM, Neal Gompa wrote: > > On Tue, Nov 17, 2015 at 9:35 AM, Donald Stufft wrote: >> >>> On Nov 17, 2015, at 9:26 AM, Neal Gompa wrote: >>> >>> The dependency generator uses pkg_resources (specifically >>> Distri

Re: New (optional) python egg dependency generator for RPM

2015-11-17 Thread Donald Stufft
> On Nov 17, 2015, at 9:26 AM, Neal Gompa wrote: > > On Tue, Nov 17, 2015 at 8:34 AM, Donald Stufft wrote: >> >>> On Nov 17, 2015, at 8:25 AM, Neal Gompa wrote: >>> Is the format inside of the .dist-info directory the same as the older >>> .egg

Re: New (optional) python egg dependency generator for RPM

2015-11-17 Thread Donald Stufft
> On Nov 17, 2015, at 8:25 AM, Neal Gompa wrote: > > On Tue, Nov 17, 2015 at 8:05 AM, Donald Stufft wrote: >> >>> On Nov 17, 2015, at 7:54 AM, Nick Coghlan wrote: >>> >>> On 17 November 2015 at 22:05, Neal Gompa wrote: >>>> and >>

Re: New (optional) python egg dependency generator for RPM

2015-11-17 Thread Donald Stufft
>>> replacement: https://www.python.org/dev/peps/pep-0427/. >> >> I don't think I've ever heard of this, much less seen it in use. And >> it looks like the format was approved well over two years ago, so I'm >> *really* surprised nothing has happened

Re: Changes in Guidelines Connected to "Python 3 as Default" Change

2014-12-03 Thread Donald Stufft
> On Dec 3, 2014, at 9:51 AM, Nick Coghlan wrote: > > > - (This is not really related to the switch, but more of a general remark) > > In [4], it says that "python 3 version of the executable gains a python3- > > prefix". This is IMO bad, since upstream projects tend to name the > > versioned

Re: PEP453 // ensurepip // pip

2014-03-25 Thread Donald Stufft
p and trying to wake up, but I’m confused as to what is happening here, pip should never install a egg info file, it always imports setuptools so it always gets an egg-info directory. Are you seeing something different? ----- Donald Stufft PGP: 0x6E3CBCE93372DCFA // 7C6B 7C5D 5E2B 63

Re: PEP453 // ensurepip // pip

2014-03-25 Thread Donald Stufft
wo different standards here :( Probably this needs to be resolved in Python itself to get distutils to make directories instead of a file. Or do the same hack that pip does in order to force setuptools monkey patching to take place and have setuptools drop them. ----- Donal

Re: PEP453 // ensurepip // pip

2014-03-25 Thread Donald Stufft
ed and use rewheel it’ll be easier to do modifications to it than having the system pip and the “bundled” pip have different sources. Because the pip source just bundles stuff as part of it’s source while the venv source has it inside a Wheel so you have to do an unpack, modify, repack dance