john-bodley edited a comment on pull request #10733: URL: https://github.com/apache/incubator-superset/pull/10733#issuecomment-689627612
@villebro we have an internal system for running the updates and a monthly cron. It seems like `pip-compile-multi` uses a GitHub workflow which we could replicate ([example](https://github.com/peterdemin/pip-compile-multi/blob/master/.github/workflows/pipcompilemulti.yml)) and run at a weekly cadence or similar. The commands we would need to run are: ``` python -m pip install -r requirements/integration.txt pip-compile-multi python -m pip install -r requirements/integration.txt pre-commit autoupdate —freeze ``` The reason we would need to reinstall the integration requirements for a second time is `pip-compile-multi` could update `pre-commit` and we want to ensure we’re using the latest version before auto-updating. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
