Automated release workflow (#1580)

This commit is contained in:
Srikanth Chekuri
2023-01-19 01:47:34 +05:30
committed by GitHub
parent e23dd5c25a
commit dd7afe0cc6
13 changed files with 728 additions and 117 deletions

View File

@ -71,7 +71,9 @@ def main():
root_path, "opentelemetry-contrib-instrumentations", "pyproject.toml"
)
deps = [f"{pkg}=={version}" for pkg, version in dependencies]
deps = [
f"{pkg.strip()}=={version.strip()}" for pkg, version in dependencies
]
with open(pyproject_toml_path, "rb") as file:
pyproject_toml = tomli.load(file)