Skip to content

Commit

Permalink
About to tag a release
Browse files Browse the repository at this point in the history
  • Loading branch information
asolino committed Nov 23, 2020
1 parent d1ced94 commit 7744710
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
VER_MAJOR = 0
VER_MINOR = 9
VER_MAINT = 22
VER_PREREL = "dev1"
VER_PREREL = ""
try:
if call(["git", "branch"], stderr=STDOUT, stdout=open(os.devnull, 'w')) == 0:
p = Popen("git log -1 --format=%cd --date=format:%Y%m%d.%H%M%S", shell=True, stdin=PIPE, stderr=PIPE, stdout=PIPE)
Expand All @@ -40,7 +40,7 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(name = PACKAGE_NAME,
version = "{}.{}.{}.{}{}".format(VER_MAJOR,VER_MINOR,VER_MAINT,VER_PREREL,VER_LOCAL),
version="{}.{}.{}".format (VER_MAJOR, VER_MINOR, VER_MAINT),
description = "Network protocols Constructors and Dissectors",
url = "https://www.secureauth.com/labs/open-source-tools/impacket",
author = "SecureAuth Corporation",
Expand Down

0 comments on commit 7744710

Please sign in to comment.