Skip to content

Commit 3ac35f7

Browse files
authored
fix: version setup
1 parent 6f40485 commit 3ac35f7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
import subprocess
77

88

9-
tags = subprocess.check_output("git tag -l | cat", shell=True).decode("utf-8")
10-
version = list(filter(None, tags.split("\n")))[-1]
9+
# tags = subprocess.check_output("git tag -l | cat", shell=True).decode("utf-8")
10+
# version = list(filter(None, tags.split("\n")))[-1]
11+
version = "v1.3.1"
1112

1213
if sys.argv[-1] == 'publish':
1314
if os.system("pip freeze | grep twine"):

0 commit comments

Comments
 (0)