Skip to content

Commit e370782

Browse files
committed
removed python 3 support due to remaining py3 bugs
1 parent 504dc7c commit e370782

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ language: python
33
# python versioning
44
python:
55
- 2.7
6-
- 3.4
7-
- 3.5
8-
- 3.6
96

107
# requirements
118
install:

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[bdist_wheel]
2-
# Only Python 2.7 supported; some versions of Python 3 support as well
3-
universal=1
2+
# Only Python 2.7 supported
3+
universal=0

setup.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# Versions should comply with PEP440. For a discussion on single-sourcing
1313
# the version across setup.py and the project code, see
1414
# https://packaging.python.org/en/latest/single_source_version.html
15-
version='2.2.0',
15+
version='3.0.0',
1616

1717
description='Assorted tools for interacting with .gct, .gctx files and other Connectivity Map (Broad Institute) data/tools',
1818
long_description="cmapPy: Tools for interacting with .gctx and .gct files, and other Connectivity Map resources. See our documentation at http://cmappy.readthedocs.io/en/latest/, and for more information on the file formats and available resources, please see clue.io/gctx.",
@@ -45,11 +45,7 @@
4545
# Specify the Python versions you support here. In particular, ensure
4646
# that you indicate whether you support Python 2, Python 3 or both.
4747
'Programming Language :: Python :: 2',
48-
'Programming Language :: Python :: 2.7',
49-
'Programming Language :: Python :: 3',
50-
'Programming Language :: Python :: 3.4',
51-
'Programming Language :: Python :: 3.5',
52-
'Programming Language :: Python :: 3.6',
48+
'Programming Language :: Python :: 2.7'
5349
],
5450

5551
# What does your project relate to?

0 commit comments

Comments
 (0)