From 0e5869b52fb6baeff61affa749079ffefdf1254d Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Thu, 2 Jul 2020 00:04:22 +0200 Subject: [PATCH] Remove 2.7/3.5 from docs --- README.rst | 2 +- docs/docs/api.rst | 2 +- docs/docs/features.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 2541797e..1dbe7ed7 100644 --- a/README.rst +++ b/README.rst @@ -98,7 +98,7 @@ Features and Limitations Jedi's features are listed here: `Features `_. -You can run Jedi on CPython 2.7 or 3.5+ but it should also +You can run Jedi on Python 3.6+ but it should also understand code that is older than those versions. Additionally you should be able to use `Virtualenvs `_ very well. diff --git a/docs/docs/api.rst b/docs/docs/api.rst index 3171ab32..33346d7d 100644 --- a/docs/docs/api.rst +++ b/docs/docs/api.rst @@ -107,7 +107,7 @@ Completions >>> code = '''import json; json.l''' >>> script = jedi.Script(code, path='example.py') >>> script - > + > >>> completions = script.complete(1, 19) >>> completions [, ] diff --git a/docs/docs/features.rst b/docs/docs/features.rst index c77418db..503b67db 100644 --- a/docs/docs/features.rst +++ b/docs/docs/features.rst @@ -16,7 +16,7 @@ Jedi's main API calls and features are: Basic Features -------------- -- Python 2.7 and 3.5+ support +- Python 3.6+ support - Ignores syntax errors and wrong indentation - Can deal with complex module / function / class structures - Great ``virtualenv``/``venv`` support