From b61f0d26f0cf8fa159a107b7660928d86ec7a65f Mon Sep 17 00:00:00 2001 From: Mathieu Duponchelle Date: Thu, 6 Apr 2017 01:11:57 +0200 Subject: [PATCH] Bump down required python version --- README.rst | 2 +- circle.yml | 2 +- tox.ini | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index b59bfec9..ec35d413 100644 --- a/README.rst +++ b/README.rst @@ -7,7 +7,7 @@ Python Language Server .. image:: https://img.shields.io/github/license/palantir/python-language-server.svg :target: https://github.com/palantir/python-language-server/blob/master/LICENSE -A Python 2.7 and 3.6 implementation of the `Language Server Protocol`_ making use of Jedi_, pycodestyle_, Pyflakes_ and YAPF_. +A Python 2.7 and 3.4+ implementation of the `Language Server Protocol`_ making use of Jedi_, pycodestyle_, Pyflakes_ and YAPF_. Features -------- diff --git a/circle.yml b/circle.yml index d66bb325..cb0ecd5e 100644 --- a/circle.yml +++ b/circle.yml @@ -1,3 +1,3 @@ machine: post: - - pyenv global 2.7.11 3.6.0 + - pyenv global 2.7.11 3.4.0 diff --git a/tox.ini b/tox.ini index a64a02fe..bdf6c2a8 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py27,py36,lint +envlist = py27,py34,lint [pycodestyle] ignore = E226