diff options
author | Gauvain Pocentek <gauvain.pocentek@objectif-libre.com> | 2016-02-03 20:32:29 +0100 |
---|---|---|
committer | Gauvain Pocentek <gauvain.pocentek@objectif-libre.com> | 2016-02-03 20:32:29 +0100 |
commit | 9ae26fe859e11bdc86f8662b6cca34522946dadf (patch) | |
tree | a4b1db9f0c6704453544f12165f48899d0f58fb4 /gitlab | |
parent | 8642e9eec44ab6b9d00581a6d5b53e8d719abec7 (diff) | |
download | gitlab-9ae26fe859e11bdc86f8662b6cca34522946dadf.tar.gz |
Partially revert 00ab7d00
Diffstat (limited to 'gitlab')
-rw-r--r-- | gitlab/__init__.py | 3 | ||||
-rw-r--r-- | gitlab/version.py | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/gitlab/__init__.py b/gitlab/__init__.py index 018a18a..f7b3c37 100644 --- a/gitlab/__init__.py +++ b/gitlab/__init__.py @@ -28,12 +28,11 @@ import requests import six import gitlab.config -import gitlab.version from gitlab.exceptions import * # noqa from gitlab.objects import * # noqa __title__ = 'python-gitlab' -__version__ = gitlab.version.version +__version__ = '0.12' __author__ = 'Gauvain Pocentek' __email__ = 'gauvain@pocentek.net' __license__ = 'LGPL3' diff --git a/gitlab/version.py b/gitlab/version.py deleted file mode 100644 index d08d17d..0000000 --- a/gitlab/version.py +++ /dev/null @@ -1 +0,0 @@ -version = '0.12' |