Removing --user-feature=in-tree-build flag from deployment
Currently the gwcelery deployment calls pip install --no-deps --use-feature=in-tree-build .
(link), however this throws a deprecation warning
DEPRECATION: In-tree builds are now the default. pip 22.1 will enforce this behaviour change. A possible replacement is to remove the --use-feature=in-tree-build flag.
Should I just change that line to pip install --no-deps .
?