powerful-eye-58407
06/26/2023, 2:07 PM2.16.0rc1
to 2.16.0.rc2
(or 2.16.0
) when running checks on BUILD files with pants tailor --check update-build-files --check ::
- from checks of each file taking <1s to 5-25 seconds per file. I have parallelism set to process_execution_local_parallelism=2
- problem goes away when this setting is changed to 1. This is a quite large repo, containing ~230 BUILD files.powerful-eye-58407
06/26/2023, 2:08 PMinterpreter_constraints = ["==3.8.*"]
we use this python version, pants runs on ubuntu 20.04powerful-eye-58407
06/26/2023, 2:11 PMpowerful-eye-58407
06/26/2023, 2:24 PM2.17.0rc1
...powerful-eye-58407
06/26/2023, 2:33 PMhappy-kitchen-89482
06/26/2023, 5:02 PMhappy-kitchen-89482
06/26/2023, 5:02 PMhappy-kitchen-89482
06/26/2023, 5:03 PMpowerful-eye-58407
06/27/2023, 11:37 AM[black]
interpreter_constraints = ["==3.8.*"]
install_from_resolve = "python-default"
to
[black]
interpreter_constraints = ["==3.8.*"]
install_from_resolve = "python-default"
requirements = ["//3rdparty/python:requirements-dev#black"]
it works without problems on 2.16.0 - so I'm not sure what was the default value in rc1 vs rc2, but it was a configuration issue on my side after all.happy-kitchen-89482
06/27/2023, 2:47 PMrequirements
it should still work, it'll just use the entire lockfile, which is probably not what you want.happy-kitchen-89482
06/27/2023, 2:47 PMpowerful-eye-58407
06/28/2023, 6:41 AM