diff --git a/packages/autorest.python/CHANGELOG.md b/packages/autorest.python/CHANGELOG.md index 8ea084e6ae0..bce230baf7c 100644 --- a/packages/autorest.python/CHANGELOG.md +++ b/packages/autorest.python/CHANGELOG.md @@ -1,5 +1,12 @@ # Release +## 6.27.4 + +### Bug Fixes + +- [771c357](https://github.com/Azure/autorest.python/commit/771c35756afc5c69928835aa01576200d43172b0) Fix install for autorest.python + + ## 6.27.3 ### Bug Fixes diff --git a/packages/autorest.python/package.json b/packages/autorest.python/package.json index bb98217abf3..8a5c9d1a67c 100644 --- a/packages/autorest.python/package.json +++ b/packages/autorest.python/package.json @@ -1,6 +1,6 @@ { "name": "@autorest/python", - "version": "6.27.3", + "version": "6.27.4", "description": "The Python extension for generators in AutoRest.", "scripts": { "start": "node ./scripts/run-python3.js ./scripts/start.py", diff --git a/packages/autorest.python/scripts/install.py b/packages/autorest.python/scripts/install.py index 9350c3c4564..7b687f1171d 100644 --- a/packages/autorest.python/scripts/install.py +++ b/packages/autorest.python/scripts/install.py @@ -41,6 +41,7 @@ def main(): venv_context = env_builder.context python_run(venv_context, "pip", ["install", "-U", "pip"]) + python_run(venv_context, "pip", ["install", "-r", f"{_ROOT_DIR}/requirements.txt"]) python_run(venv_context, "pip", ["install", "-e", f"{_ROOT_DIR}/generator"])