chore: Making eachdist release catch more deps (#867)

In the last release, eachdist missed updating dependencies
on ext-datadog, which has a slightly different, but valid,
way of specifying the version (omitting some spaces).

Making the eachdist regex more lenient to catch other valid
version specifications.

Also modifying the ext-datadog dependency specification to
match the format of all the others.

Co-authored-by: Leighton Chen <lechen@microsoft.com>
This commit is contained in:
Yusuke Tsutsumi
2020-07-02 09:45:56 -07:00
committed by GitHub
parent 277bcee29a
commit aab6c9c00b

View File

@ -589,8 +589,8 @@ def update_dependencies(targets, version):
targets,
version,
"setup.cfg",
r"(opentelemetry-.*)= (.*)",
r"\1= " + version,
r"(opentelemetry-.*)==(.*)",
r"\1== " + version,
)