is there a command to say, "build all the python t...
# general
m
is there a command to say, "build all the python targets where the compatibility requirement is this"? context is one of our targets is only py3.7, and we want to separate the ci command for py3.7 from the rest
e
Unfortunately no, not at the moment. You'll need to add a redundant
tags={'py37'}
to the target(s) and then use
./pants --tags=[+/-]py37 ...
.
m
i see
so
-tag
is not going to include that tag in the list of targets to operate on, yes?
e
Correct.
-[tag]
excludes targets with the tag,
+[tag]
on includes targets with the tag.