From dccc7c32b412fe6bb26cbd90a607dd1ed5ddc23f Mon Sep 17 00:00:00 2001 From: Heyi Tang Date: Fri, 8 Sep 2023 17:09:50 +0800 Subject: [PATCH] [Executor][Bugfix] Add psutil dependency (#347) # Description Add psutil dependency to avoid bulk run failing in windows environment. # All Promptflow Contribution checklist: - [x] **The pull request does not introduce [breaking changes]** - [x] **CHANGELOG is updated for new features, bug fixes or other significant changes.** - [x] **I have read the [contribution guidelines](../CONTRIBUTING.md).** ## General Guidelines and Best Practices - [ ] Title of the pull request is clear and informative. - [ ] There are a small number of commits, each of which have an informative message. This means that previously merged commits do not appear in the history of the PR. For more information on cleaning up the commits in your PR, [see this page](https://github.com/Azure/azure-powershell/blob/master/documentation/development-docs/cleaning-up-commits.md). ### Testing Guidelines - [ ] Pull request includes test coverage for the included changes. Co-authored-by: Heyi Tang --- src/promptflow/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/promptflow/setup.py b/src/promptflow/setup.py index 3e531717130..c8f3b040832 100644 --- a/src/promptflow/setup.py +++ b/src/promptflow/setup.py @@ -21,6 +21,7 @@ changelog = f.read() REQUIRES = [ + "psutil", # Get process information when bulk run "openai>=0.27.8,<0.28.0", # promptflow.core.api_injector "flask>=2.2.3,<3.0.0", # Serving endpoint requirements "dataset>=1.6.0,<2.0.0", # promptflow.storage