Skip to content

Commit c5f79c0

Browse files
author
MartinMikita
committed
Removed unused code from setup.py. Changed version in __init__.py.
1 parent fb19c4e commit c5f79c0

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

Diff for: cloudwrapper/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@
2626
2727
"""
2828

29-
__version__ = '1.0'
29+
__version__ = '1.1'

Diff for: setup.py

-7
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,6 @@
33

44
import cloudwrapper
55

6-
with open('cloudwrapper/__init__.py') as f:
7-
for line in f:
8-
if line.find("__version__") >= 0:
9-
version = line.split("=")[1].strip()
10-
version = version.strip('"')
11-
version = version.strip("'")
12-
continue
136

147
open_kwds = {}
158
if sys.version_info > (3,):

0 commit comments

Comments
 (0)