We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1934148 commit 79d80b2Copy full SHA for 79d80b2
setup.py
@@ -1,11 +1,11 @@
1
import setuptools
2
-
+from tryhackme import __version__
3
with open("README.md", "r") as fh:
4
long_description = fh.read()
5
6
setuptools.setup(
7
name="tryhackme.py",
8
- version="1.2.1",
+ version=__version__,
9
author="gnarlito",
10
author_email="gnarlito35@gmail.com",
11
description="THM public API wrapper",
tryhackme/__init__.py
@@ -1,5 +1,5 @@
-__version__ = "1.0.0"
+__version__ = "1.2.4"
from .errors import *
from .converters import *
0 commit comments