File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed
Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 33"""
44GenePattern Python Client
55
6- Compatible with Python 3.4 +
6+ Compatible with Python 3.6 +
77"""
88
99__authors__ = ['Thorin Tabor' , 'Chet Birger' ]
1010__copyright__ = 'Copyright 2014-2020, Regents of the University of California & Broad Institute'
11- __version__ = '20.05 '
11+ __version__ = '20.07 '
1212__status__ = 'Production'
1313
1414# Import core functionality
2121 # Ignore if subpackages are unavailable
2222 True
2323
24- # # Warn if this is imported using the old `gp` namespace
25- # if __name__ == 'gp':
26- # message = 'The GenePattern Python library has been restructured and now uses the `genepattern.client` package name. ' + \
27- # 'Please import using that name as `gp` will be deprecated in the future'
28- # warnings.warn(message, PendingDeprecationWarning)
29- # print('WARNING: ' + message)
Original file line number Diff line number Diff line change 22
33
44# Read version and other metadata from file
5- __version__ = '20.05 '
5+ __version__ = '20.07 '
66
77with open ('README.md' ) as f :
88 long_description = f .read ()
You can’t perform that action at this time.
0 commit comments