summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 87f67a0..731d6a5 100644
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ from setuptools import find_packages, setup
def get_version() -> str:
version = ""
- with open("gitlab/__version__.py") as f:
+ with open("gitlab/_version.py") as f:
for line in f:
if line.startswith("__version__"):
version = eval(line.split("=")[-1])