Skip to content

Commit 1e2a643

Browse files
authored
Merge pull request #72 from whtsky/drop_py34
chore: drop support for Python 3.4(EOLed)
2 parents bd53d39 + 43a40ac commit 1e2a643

File tree

6 files changed

+3
-28
lines changed

6 files changed

+3
-28
lines changed

.circleci/config.yml

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,6 @@ jobs:
5353
docker:
5454
- image: circleci/python:2.7
5555
<<: *test
56-
py34:
57-
docker:
58-
- image: circleci/python:3.4
59-
<<: *test
6056
py35:
6157
docker:
6258
- image: circleci/python:3.5
@@ -95,11 +91,6 @@ jobs:
9591
- image: quay.io/pypa/manylinux1_x86_64
9692
<<: *build-wheel
9793

98-
manylinux-x64_cp34-cp34m:
99-
docker:
100-
- image: quay.io/pypa/manylinux1_x86_64
101-
<<: *build-wheel
102-
10394
manylinux-x64_cp35-cp35m:
10495
docker:
10596
- image: quay.io/pypa/manylinux1_x86_64
@@ -128,11 +119,6 @@ jobs:
128119
- image: quay.io/pypa/manylinux1_i686
129120
<<: *build-wheel
130121

131-
manylinux-x86_cp34-cp34m:
132-
docker:
133-
- image: quay.io/pypa/manylinux1_i686
134-
<<: *build-wheel
135-
136122
manylinux-x86_cp35-cp35m:
137123
docker:
138124
- image: quay.io/pypa/manylinux1_i686
@@ -153,7 +139,6 @@ workflows:
153139
test_and_build:
154140
jobs:
155141
- py27
156-
- py34
157142
- py35
158143
- py36
159144
- py37
@@ -166,9 +151,6 @@ workflows:
166151
- manylinux-x64_cp27-cp27mu:
167152
requires:
168153
- py27
169-
- manylinux-x64_cp34-cp34m:
170-
requires:
171-
- py34
172154
- manylinux-x64_cp35-cp35m:
173155
requires:
174156
- py35
@@ -185,9 +167,6 @@ workflows:
185167
- manylinux-x86_cp27-cp27mu:
186168
requires:
187169
- py27
188-
- manylinux-x86_cp34-cp34m:
189-
requires:
190-
- py34
191170
- manylinux-x86_cp35-cp35m:
192171
requires:
193172
- py35

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ env:
55
- secure: "R5OivfMMAw1BhdwbBjEjfxhkqtj+Ntqf+jh+05Mr3y1aV8tC9J1vsq213Q7J7teweJ7WteHSj8ymJk2DdJ5mOIFEPAWQeuUIzcaplmfmsxYNdUhj19Ok8E8XG+ppBHccDaS3eE6GM6tDB9PouOE0MGA8/j9DLHXDSPTrjO/+G+AQ7V9M2+XqiEHJrPhlzas1h37XKLa5EzMIMK3atoUS1CLg6JOa+Rgz9OfXs+wQyErdQ5BjNfzZH4BKFhHl1zBViPv+j3SHDkyFw92mbXx14qn8xiyY3ZtKisMKT/X5o8DUJbWN3OdFF65NQq5lcnTFjIx06LJmy+zLjnZ83qggRuRPxAV2D9ODRBjDY3bdBMVSeaP/0yKldZyd14UXU3Ahwymi9lHC+MRgzRx5VyovptgOq3RfZ97peRT0NRDuotcxG1oFcAOIutH7oQZiAWZV7LLSSc3JdNCbwjRDm0MqzoD4TcMa8vCJMEZWSzLLygJYiZC0OklTnOYko5wdYms8aJw1FPjXbc2UNo6bVXXnbdoxEfadxtWKskNKF6tSdl766CMh/jM3gMv2bZkY2mYSnNp1RL1sslE33BZPgzW5fyFnUBskwQZEOidWx+uQ1eiPsnvb5FBC8on59fTVKkHh6Xiffqltq8Yvy33P12qoV+S9GHMT4DOm9bQf/qob2fQ="
66
matrix:
77
- VERSION=2.7
8-
- VERSION=3.4
98
- VERSION=3.5
109
- VERSION=3.6
1110
- VERSION=3.7

appveyor.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: '{branch}-{build}'
1+
version: "{branch}-{build}"
22
cache:
33
- '%LOCALAPPDATA%\pip\Cache'
44
environment:
@@ -8,8 +8,6 @@ environment:
88
matrix:
99
- PYTHON: "C:\\Python27"
1010
- PYTHON: "C:\\Python27-x64"
11-
- PYTHON: "C:\\Python34"
12-
- PYTHON: "C:\\Python34-x64"
1311
- PYTHON: "C:\\Python35"
1412
- PYTHON: "C:\\Python35-x64"
1513
- PYTHON: "C:\\Python36"

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ def get_tag(self):
117117
'Programming Language :: Python :: 2',
118118
'Programming Language :: Python :: 2.7',
119119
'Programming Language :: Python :: 3',
120-
'Programming Language :: Python :: 3.4',
121120
'Programming Language :: Python :: 3.5',
122121
'Programming Language :: Python :: 3.6',
123122
'Programming Language :: Python :: 3.7',

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 = py27, py34, py35, py36, py37
2+
envlist = py27, py35, py36, py37
33

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

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, py34, py35, py36, py37, pypy, pypy3
2+
envlist = py27, py35, py36, py37, pypy, pypy3
33

44
[testenv]
55
commands =

0 commit comments

Comments
 (0)