Skip to content

Commit e41656e

Browse files
sethmlarsonpquentin
authored andcommitted
Drop support for Python 3.4 (python-trio#50)
1 parent d8478db commit e41656e

4 files changed

Lines changed: 1 addition & 7 deletions

File tree

.appveyor.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ os: Visual Studio 2015
55
environment:
66
matrix:
77
- PYTHON: "C:\\Python27-x64"
8-
- PYTHON: "C:\\Python34-x64"
98
- PYTHON: "C:\\Python35-x64"
109
- PYTHON: "C:\\Python36-x64"
1110
- PYTHON: "C:\\Python37-x64"

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ matrix:
1111
- python: pypy2.7-7.1.1
1212
- python: 2.7
1313
- python: pypy3.5
14-
- python: 3.4
1514
- python: 3.5
1615
- python: 3.6
1716
- python: 3.7

pytest.ini

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ norecursedirs = .git .* *.egg* old docs dist build
33
addopts = -rw
44
filterwarnings =
55
error
6-
# python3.4 raises this when importing setuptools
7-
ignore:The value of convert_charrefs will become True in 3.5.*:DeprecationWarning
8-
96
# To ignore warning for deprecated imp module in setuptools
107
ignore:the imp module is deprecated.*:PendingDeprecationWarning
118
ignore:the imp module is deprecated.*:DeprecationWarning:

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
package_dir={"": "src"},
2222
install_requires=[],
2323
keywords=["async"],
24-
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4",
24+
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4",
2525
classifiers=[
2626
"License :: OSI Approved :: MIT License",
2727
"License :: OSI Approved :: Apache Software License",
@@ -32,7 +32,6 @@
3232
"Programming Language :: Python :: 2",
3333
"Programming Language :: Python :: 2.7",
3434
"Programming Language :: Python :: 3",
35-
"Programming Language :: Python :: 3.4",
3635
"Programming Language :: Python :: 3.5",
3736
"Programming Language :: Python :: 3.6",
3837
"Programming Language :: Python :: 3.7",

0 commit comments

Comments
 (0)