Skip to content

Commit 315841a

Browse files
committed
drop support for python 2.6
1 parent 4f2cd57 commit 315841a

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

ci/build-wheels.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ for whl in /tmp/wheelhouse/bencoder*.whl; do
1414
auditwheel repair $whl -w /io/wheelhouse/
1515
done
1616

17-
cp /tmp/wheelhouse/ordereddict* /io/wheelhouse || true
18-
1917
# Install packages and test again
2018
for PYBIN in /opt/python/*/bin/; do
2119
${PYBIN}/pip install bencoder.pyx --no-index -f /io/wheelhouse

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88

99
version = platform.python_version_tuple()
1010
install_requires = []
11-
if version < ('2', '7'):
12-
install_requires.append('ordereddict>=1.1')
1311

1412
pyx_path = 'bencoder.pyx'
1513
c_path = 'bencoder.c'
@@ -57,7 +55,7 @@ def initialize_options(self):
5755
self.pytest_args = []
5856

5957
def run_tests(self):
60-
#import here, cause outside the eggs aren't loaded
58+
# import here, cause outside the eggs aren't loaded
6159
import coverage
6260
cov = coverage.Coverage()
6361
cov.start()
@@ -119,7 +117,6 @@ def get_tag(self):
119117
'Programming Language :: Cython',
120118
'Programming Language :: Python',
121119
'Programming Language :: Python :: 2',
122-
'Programming Language :: Python :: 2.6',
123120
'Programming Language :: Python :: 2.7',
124121
'Programming Language :: Python :: 3',
125122
'Programming Language :: Python :: 3.3',

tox-wheels.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26, py27, py33, py34, py35, py36
2+
envlist = py27, py33, py34, py35, py36
33

44
[testenv]
55
commands = pip wheel {toxinidir} -w {toxinidir}/wheelhouse/

tox.ini

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26, py27, py33, py34, py35, py36, pypy
2+
envlist = py27, py33, py34, py35, py36, pypy
33

44
[testenv]
55
commands =
@@ -11,13 +11,11 @@ deps =
1111
cython
1212
pytest
1313
coverage
14-
pytest-benchmark
1514
codecov
1615

1716
[testenv:pypy]
1817
skip_install = False
1918
deps =
2019
cython
2120
pytest
22-
pytest-benchmark
2321
commands = py.test

0 commit comments

Comments
 (0)