Skip to content

Commit 889bfcd

Browse files
authored
Merge pull request #34 from atlanhq/fix_workflow
Fix workflow
2 parents fef414e + 2649a71 commit 889bfcd

4 files changed

Lines changed: 3 additions & 2 deletions

File tree

β€ŽMANIFEST.inβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include pyatlan/version.txt

β€Žcheck_tag.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def read(file_name):
3434
def main(env_var="GITHUB_REF") -> int:
3535
git_ref = os.getenv(env_var, "none")
3636
tag = re.sub("^refs/tags/v*", "", git_ref.lower())
37-
version = read("version.txt").strip()
37+
version = read("pyatlan/version.txt").strip()
3838
if tag == version:
3939
return 0
4040
else:
File renamed without changes.

β€Žsetup.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def read(file_name):
4141

4242
setup(
4343
name="pyatlan",
44-
version=read("version.txt"),
44+
version=read("pyatlan/version.txt"),
4545
author="Atlan Technologies Pvt Ltd",
4646
author_email="engineering@atlan.com",
4747
description="Atlan Python Client",

0 commit comments

Comments
Β (0)