Add star to all non-0.1 versions (#6146)

This commit is contained in:
Sebastian Rittau
2021-10-11 22:41:19 +02:00
committed by GitHub
parent b16ec5451a
commit 9f86972350
94 changed files with 94 additions and 97 deletions

View File

@@ -80,7 +80,7 @@ def create_metadata(stub_dir: str, version: str) -> None:
assert not os.path.exists(fnam)
print(f"Writing {fnam}")
with open(fnam, "w") as f:
f.write(f'version = "{version}"\n')
f.write(f'version = "{version}.*"\n')
def add_pyright_exclusion(stub_dir: str) -> None: