[13:19:11] <mjacob> is it possible to specify a --hash=sha256:... for a requirement (for hash-checking mode) directly on the command line (without having a requirements file)?
[14:42:41] <adelks> Hello! Thanks for your great work on pip and co. I have an issue with pip (not related to the move from 20.2.4 to 20.3, weirdly enough) but more an issue with Python 3.9 ? When on a virtualenv, I want to install package C, that needs package A and B. It tries to install them and is oblivious to the fact that A and B are already installed in the virtualenv. It seems to be activating by default "--ignore-installed" I don't know why
[14:46:36] <adelks> It seems to want to install the "requires", given in "pyproject.toml", no matter if they are available or not, in the virtualenv, or the "system-site-packages"
[14:47:07] <adelks> @ngoldbaum, did this option become a default ? can I get a reference ?
[14:47:22] <ngoldbaum> i don’t have it on hand, try googling for pep 517
[15:04:16] <inad922> What's the reason for making python package versions conform these https://www.python.org/dev/peps/pep-0440/#appendix-b-parsing-version-strings-with-regular-expressions regexes?
[15:04:39] <inad922> I mean this was not present in 20.1.1 in pip but throws exception if I don't match these in 20.3.1
[15:05:15] <inad922> I mean first I don't see what purpose this serves, second it's a backward incompatible change in a non-major version change.