Skip to content

Commit f66b531

Browse files
committed
go back to using statistics in 3.3 and remove 3.2 support
1 parent e77a435 commit f66b531

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
language: python
22
python:
3-
- "3.2"
43
- "3.3"
54
- "3.4"
65
- "pypy3"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Use cases include xenografts of human cancers in mouse and host pathogen interac
1313

1414
Installation
1515
============
16-
Xenomapper requires python 3.2 or higher and is tested on linux and MacOS with CPython and pypy3. For bam file decoding samtools must be installed.
16+
Xenomapper requires python 3.3 or higher and is tested on linux and MacOS with CPython and pypy3. For bam file decoding samtools must be installed.
1717

1818
Installing from the Python Package Index with pip is the easiest option:
1919

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
try:
99
import statistics
1010
except ImportError:
11-
install_requires.append('backports.statistics')
11+
install_requires.append('statistics')
1212

1313
setup(
1414
name='XenoMapper',
@@ -33,7 +33,6 @@
3333
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
3434
'Operating System :: POSIX',
3535
'Programming Language :: Python :: 3 :: Only',
36-
'Programming Language :: Python :: 3.2',
3736
'Programming Language :: Python :: 3.3',
3837
'Programming Language :: Python :: 3.4',
3938
'Programming Language :: Python :: Implementation :: CPython',

0 commit comments

Comments
 (0)