8000 Drop support for EOL Python 3.4 (#421) · Global19/html5lib-python@77879b0 · GitHub
[go: up one dir, main page]

Skip to content
< 8000 header class="HeaderMktg header-logged-out js-details-container js-header Details f4 py-3" role="banner" data-is-top="true" data-color-mode=light data-light-theme=light data-dark-theme=dark>

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 77879b0

Browse files
hugovkjgraham
authored andcommitted
Drop support for EOL Python 3.4 (html5lib#421)
1 parent 4b22754 commit 77879b0

File tree

4 files changed

+2
-5
lines changed

4 files changed

+2
-5
lines changed

.appveyor.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ environment:
66
matrix:
77
- TOXENV: py27-base
88
- TOXENV: py27-optional
9-
- TOXENV: py34-base
10-
- TOXENV: py34-optional
119
- TOXENV: py35-base
1210
- TOXENV: py35-optional
1311
- TOXENV: py36-base

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ python:
44
- "pypy"
55
- "3.6"
66
- "3.5"
7-
- "3.4"
87
- "2.7"
98

109
cache: pip

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ def default_environment():
6666
'Programming Language :: Python :: 2',
6767
'Programming Language :: Python :: 2.7',
6868
'Programming Language :: Python :: 3',
69-
'Programming Language :: Python :: 3.4',
7069
'Programming Language :: Python :: 3.5',
7170
'Programming Language :: Python :: 3.6',
7271
'Topic :: Software Development :: Libraries :: Python Modules',
@@ -104,6 +103,7 @@ def default_environment():
104103
'six>=1.9',
105104
'webencodings',
106105
],
106+
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
107107
extras_require={
108108
# A conditional extra will only install these items when the extra is
109109
# requested and the condition matches.

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,pypy}-{base,six19,optional}
2+
envlist = {py27,py35,py36,pypy}-{base,six19,optional}
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)
0