quaint-telephone-89068
12/01/2022, 2:10 PMresolves_to_only_binary in pants.toml the value :all: is not accepted. The doc says "For each resolve's value, you can use the value :all: to disable all source packages."
Setting resolves_to_only_binary = "{'python-default': [':all:']}" gives:
ValueError: Invalid requirement ':all:' in the option `[python].resolves_to_only_binary` for the resolve python-default: Parse error at "':all:'": Expected W:(0-9A-Za-z)
Setting resolves_to_only_binary = "{'python-default': ':all:'}" gives:
ValueError: Invalid requirement ':' in the option `[python].resolves_to_only_binary` for the resolve python-default: Parse error at "':'": Expected W:(0-9A-Za-z)
Listing all my requirements manually instead of using :all: has the expected effect, but is inconvenient.
Pants version
2.14.0
OS
Only tested on MacOS 12.6 on an M1 Mac with Python 3.8.12
pantsbuild/pantsuser
12/13/2022, 1:47 AM