Skip to content

Commit bfebdf9

Browse files
committed
drop Python 3.5
1 parent c4c8b87 commit bfebdf9

File tree

5 files changed

+4
-15
lines changed

5 files changed

+4
-15
lines changed

.manylinux-install.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ set -e -x
66
# Compile wheels
77
for PYBIN in /opt/python/*/bin; do
88
if [[ "${PYBIN}" == *"cp27"* ]] || \
9-
[[ "${PYBIN}" == *"cp35"* ]] || \
109
[[ "${PYBIN}" == *"cp36"* ]] || \
1110
[[ "${PYBIN}" == *"cp37"* ]] || \
1211
[[ "${PYBIN}" == *"cp38"* ]];
@@ -28,7 +27,6 @@ done
2827
# Install new wheels and test
2928
for PYBIN in /opt/python/*/bin; do
3029
if [[ "${PYBIN}" == *"cp27"* ]] || \
31-
[[ "${PYBIN}" == *"cp35"* ]] || \
3230
[[ "${PYBIN}" == *"cp36"* ]] || \
3331
[[ "${PYBIN}" == *"cp37"* ]] || \
3432
[[ "${PYBIN}" == *"cp38"* ]];

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ matrix:
1010
- os: linux
1111
python: 3.6
1212
env: TOXENV=py36
13-
- os: linux
14-
python: 3.5
15-
env: TOXENV=py35
1613
- os: linux
1714
python: 2.7
1815
env: TOXENV=py27

appveyor.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,7 @@ environment:
66
matrix:
77
- python : 27
88
- python : 27-x64
9-
- python : 35
10-
- python : 35-x64
11-
- python : 36
9+
- python : 36
1210
- python : 36-x64
1311
- python : 37
1412
- python : 37-x64

setup.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,7 @@ def c_compile(obj, src, ext, cc_args, extra_postargs, pp_opts):
3535

3636
if c.compiler_type == 'unix' and 'gcc' in c.compiler:
3737
c._compile = c_compile
38-
elif self.compiler.compiler_type == "msvc":
39-
if sys.version_info[:2] < (3, 5):
40-
c.include_dirs.extend(['crfsuite/win32'])
41-
38+
4239
build_ext.build_extensions(self)
4340

4441

@@ -68,7 +65,6 @@ def c_compile(obj, src, ext, cc_args, extra_postargs, pp_opts):
6865
"Programming Language :: Python :: 2",
6966
"Programming Language :: Python :: 2.7",
7067
"Programming Language :: Python :: 3",
71-
"Programming Language :: Python :: 3.5",
7268
"Programming Language :: Python :: 3.6",
7369
"Programming Language :: Python :: 3.7",
7470
"Programming Language :: Python :: 3.8",
@@ -81,5 +77,5 @@ def c_compile(obj, src, ext, cc_args, extra_postargs, pp_opts):
8177
zip_safe=False,
8278
packages=['pycrfsuite'],
8379
ext_modules=ext_modules,
84-
cmdclass={'build_ext': build_ext_check_gcc}
80+
cmdclass={'build_ext': build_ext_check_gcc},
8581
)

tox.ini

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

44
[testenv]
55
changedir = {envtmpdir}

0 commit comments

Comments
 (0)