PMXBOT Log file Viewer

Help | Karma | Search:

#pypa logs for Thursday the 5th of December, 2019

(Back to #pypa overview) (Back to channel listing) (Animate logs)
[11:19:25] <mcepl> Any ideas about https://github.com/pypa/setuptools/issues/1935 ?
[12:55:37] <tos9> mcepl: I don't know specifically, but `python setup.py install` isn't really a thing anymore (for awhile) -- does the error still happen if you use a normal installation method? i.e. `pip install that`
[14:55:21] <mjacob> when specifying an explicit version like in `pip install package==5.2.0`, the specified version is installed as an end result, no matter whether there's some version of the package installed or not. however, when running `pip install 'hg+https://url/to/repository@0102030405060708090a0b0c0d0e0f0001020304#egg=package'`, the specified revision is only installed if the package is not installed at all.
[14:56:21] <mjacob> how can i get the behavior that the specified revision is installed as an end result?
[14:57:20] <mjacob> passing "--upgrade" would work, but then the specified version is always re-installed, which i'd like to avoid.