ac752c2b2a
# Description This PR targets to set up fundamental for new promptflow package `promptflow-tracing`: - Add new dev setup script: `python scripts/dev-setup/main.py` - Bump version to 1.0.0.dev0 **dev setup script** help message  output (progress)  # All Promptflow Contribution checklist: - [x] **The pull request does not introduce [breaking changes].** - [ ] **CHANGELOG is updated for new features, bug fixes or other significant changes.** - [x] **I have read the [contribution guidelines](../CONTRIBUTING.md).** - [ ] **Create an issue and link to the pull request to get dedicated review from promptflow team. Learn more: [suggested workflow](../CONTRIBUTING.md#suggested-workflow).** ## General Guidelines and Best Practices - [x] Title of the pull request is clear and informative. - [x] 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.
53 lines
1.1 KiB
Python
53 lines
1.1 KiB
Python
# ---------------------------------------------------------
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
# ---------------------------------------------------------
|
|
|
|
import contextlib
|
|
import os
|
|
import platform
|
|
import subprocess
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
REPO_ROOT_DIR = Path(__file__).parent.parent.parent
|
|
|
|
|
|
class Color:
|
|
BLUE = "\033[94m"
|
|
YELLOW = "\033[93m"
|
|
END = "\033[0m"
|
|
|
|
|
|
def print_blue(msg: str) -> None:
|
|
print(Color.BLUE + msg + Color.END)
|
|
|
|
|
|
def print_yellow(msg: str) -> None:
|
|
print(Color.YELLOW + msg + Color.END)
|
|
|
|
|
|
@contextlib.contextmanager
|
|
def change_cwd(path):
|
|
cwd = os.getcwd()
|
|
try:
|
|
os.chdir(path)
|
|
yield
|
|
finally:
|
|
os.chdir(cwd)
|
|
|
|
|
|
def run_cmd(cmd, verbose: bool = False) -> None:
|
|
print_blue(f"Running {' '.join(cmd)}")
|
|
shell = platform.system() == "Windows"
|
|
p = subprocess.Popen(
|
|
cmd,
|
|
stdout=subprocess.PIPE,
|
|
stderr=subprocess.STDOUT,
|
|
shell=shell,
|
|
)
|
|
for line in p.stdout:
|
|
line = line.decode("utf-8").rstrip()
|
|
if verbose:
|
|
sys.stdout.write(f"{line}\n")
|
|
p.communicate()
|