Skip to content

Commit 4e1215b

Browse files
committed
Updating version number
1 parent 709dae0 commit 4e1215b

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

gp/__init__.py

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"""
44
GenePattern 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
@@ -21,9 +21,3 @@
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)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
# Read version and other metadata from file
5-
__version__ = '20.05'
5+
__version__ = '20.07'
66

77
with open('README.md') as f:
88
long_description = f.read()

0 commit comments

Comments
 (0)