Skip to content

Commit 2770a9d

Browse files
authored
Update setup.py
1 parent 38f3e50 commit 2770a9d

File tree

1 file changed

+2
-24
lines changed

1 file changed

+2
-24
lines changed

setup.py

Lines changed: 2 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
if os.path.exists("dist"):
77
shutil.rmtree("dist")
88

9-
VERSION = '0.0.7'
9+
VERSION = '0.0.8'
1010

1111

1212
with open('README.md') as f:
@@ -18,7 +18,7 @@ def write_version_py(filename='SigProfilerAssignment/version.py'):
1818
# THIS FILE IS GENERATED FROM SigProfilerAssignment SETUP.PY
1919
short_version = '%(version)s'
2020
version = '%(version)s'
21-
Update = 'New Release. 1.Bug Fixes with differnt context types 2. Updated documentation 3. Included signature subgroups'
21+
Update = '1.Copy number Signatures support 2. Fixed bugs on signature subtypes'
2222
2323
"""
2424
fh = open(filename, 'w')
@@ -39,28 +39,6 @@ def write_version_py(filename='SigProfilerAssignment/version.py'):
3939
'PyPDF2>=1.26.0',
4040
'alive_progress'
4141
]
42-
43-
# operating_system = sys.platform
44-
# print(operating_system)
45-
# if operating_system in ['win32','cygwin','windows']:
46-
# requirements.remove('matplotlib>=3.3.0')
47-
# requirements.remove('torch==1.5.1')
48-
# print('Trying to install pytorch!')
49-
# code = 1
50-
# try:
51-
# code = subprocess.call(['pip', 'install', 'torch===1.5.1+cpu', '-f', 'https://download.pytorch.org/whl/torch_stable.html'])
52-
# if code != 0:
53-
# raise Exception('Torch instalation failed !')
54-
# except:
55-
# try:
56-
# code = subprocess.call(['pip3', 'install', 'torch===1.5.1+cpu', '-f', 'https://download.pytorch.org/whl/torch_stable.html'])
57-
# if code != 0:
58-
# raise Exception('Torch instalation failed !')
59-
# except:
60-
# print('Failed to install pytroch, please install pytroch manually be following the simple instructions over at: https://pytorch.org/get-started/locally/')
61-
# if code == 0:
62-
# print('Successfully installed pytorch version! (If you need the GPU version, please install it manually, checkout the mindsdb docs and the pytroch docs if you need help)')
63-
6442

6543
write_version_py()
6644
setup(name='SigProfilerAssignment',

0 commit comments

Comments
 (0)