remove setting of SCM_VERSION in install-version.py (#11119)

This commit is contained in:
Kyle Altendorf 2022-04-20 11:17:51 -07:00 committed by GitHub
parent 5b044ea497
commit 6c8fa52daf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,3 @@
import os
import sys
from setuptools_scm import get_version
@ -10,7 +9,6 @@ def main():
scm_full_version = get_version(root="..", relative_to=__file__)
# scm_full_version = "1.0.5.dev22"
os.environ["SCM_VERSION"] = scm_full_version
left_full_version = scm_full_version.split("+")
version = left_full_version[0].split(".")