remove travis config (#7522)

* remove travis config

* remove more travis and appveyor stuff

* remove appveyor specific things
This commit is contained in:
Derek Bailey
2022-09-10 12:36:51 -07:00
committed by GitHub
parent b901598233
commit 89b1f5aa1b
11 changed files with 0 additions and 308 deletions

View File

@@ -21,14 +21,6 @@ def get_branch():
def get_version():
version = get_branch()
if os.getenv("TRAVIS", False):
version = os.getenv("TRAVIS_BRANCH")
if os.getenv("APPVEYOR", False):
version = os.getenv("APPVEYOR_REPO_BRANCH")
if os.getenv("APPVEYOR_REPO_TAG") == "true":
version = os.getenv("APPVEYOR_REPO_TAG_NAME")
match = re.search(r"v(\d+\.\d+\.\d+.*)", version)
if match:
return match.group(1)