Skip to content

Commit 7623ffe

Browse files
authored
Support Python 3.4
Add python 3.4 for CI
2 parents c2e0e74 + 9f502ac commit 7623ffe

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

.appveyor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ environment:
66
matrix:
77
- PYTHON: "C:\\Python27"
88
- PYTHON: "C:\\Python27-x64"
9+
- PYTHON: "C:\\Python34"
10+
- PYTHON: "C:\\Python34-x64"
911
- PYTHON: "C:\\Python35"
1012
- PYTHON: "C:\\Python35-x64"
1113
- PYTHON: "C:\\Python36"

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ matrix:
1111
- python: pypy2.7-7.1.1
1212
- python: 2.7
1313
- python: pypy3.5
14+
- python: 3.4
1415
- python: 3.5
1516
- python: 3.6
1617
- python: 3.7

pytest.ini

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[pytest]
2+
norecursedirs = .git .* *.egg* old docs dist build
3+
addopts = -rw
4+
filterwarnings =
5+
error
6+
# python3.4 raises this when importing setuptools
7+
ignore:The value of convert_charrefs will become True in 3.5.*:DeprecationWarning

setup.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,22 @@
2121
package_dir={"": "src"},
2222
install_requires=[],
2323
keywords=["async"],
24-
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4",
24+
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, <4",
2525
classifiers=[
2626
"License :: OSI Approved :: MIT License",
2727
"License :: OSI Approved :: Apache Software License",
2828
"Framework :: Trio",
2929
"Operating System :: POSIX :: Linux",
3030
"Operating System :: MacOS :: MacOS X",
3131
"Operating System :: Microsoft :: Windows",
32-
"Programming Language :: Python :: 3 :: Only",
32+
'Programming Language :: Python :: 2',
33+
'Programming Language :: Python :: 2.7',
34+
'Programming Language :: Python :: 3',
35+
'Programming Language :: Python :: 3.4',
36+
'Programming Language :: Python :: 3.5',
37+
'Programming Language :: Python :: 3.6',
38+
'Programming Language :: Python :: 3.7',
39+
'Programming Language :: Python :: 3.8',
3340
"Programming Language :: Python :: Implementation :: CPython",
3441
"Programming Language :: Python :: Implementation :: PyPy",
3542
],

0 commit comments

Comments
 (0)