Skip to content

Commit

Permalink
Drop support for EOL Python 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored and PCManticore committed Dec 11, 2017
1 parent bf1aa0c commit b35166f
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 10 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ matrix:
env: TOXENV=py27
- python: 2.7.6
env: TOXENV=py27
# This is used by Ubuntu Trusty
- python: 3.3
env: TOXENV=py33
- python: 3.4
env: TOXENV=py34
- python: 3.5-dev
Expand Down
3 changes: 0 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ environment:
- PYTHON: "C:\\Python27"
TOXENV: "py27"

- PYTHON: "C:\\Python33"
TOXENV: "py33"

- PYTHON: "C:\\Python34"
TOXENV: "py34"

Expand Down
2 changes: 1 addition & 1 deletion doc/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ it is also working on PyPy.
2.4 What versions of Python is Pylint supporting?
--------------------------------------------------

Since Pylint 1.4, we support only Python 2.7+ and Python 3.3+. If code
Since Pylint 1.8, we support only Python 2.7 and Python 3.4+. If code
uses new Python 3.6 syntax, minimal required version is Pylint 1.7.

Using this strategy really helps in maintaining a code base compatible
Expand Down
1 change: 0 additions & 1 deletion pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ def has_environment_marker_range_operators_support():
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def install(**kwargs):
cmdclass=cmdclass,
extras_require=extras_require,
test_suite='test',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
setup_requires=['pytest-runner'],
tests_require=['pytest'],
**kwargs)
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py33, py34, py35, py36, pypy, jython, pylint
envlist = py27, py34, py35, py36, pypy, jython, pylint
skip_missing_interpreters = true

[testenv:pylint]
Expand Down

0 comments on commit b35166f

Please sign in to comment.