Skip to content

Commit

Permalink
jedi.api.environment._SUPPORTED_PYTHONS: add 3.7
Browse files Browse the repository at this point in the history
The grammar is available in parso already, and it works in general.
  • Loading branch information
blueyed authored and davidhalter committed Sep 15, 2018
1 parent 84b07a8 commit 1cf5b19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jedi/api/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

_VersionInfo = namedtuple('VersionInfo', 'major minor micro')

_SUPPORTED_PYTHONS = ['3.6', '3.5', '3.4', '3.3', '2.7']
_SUPPORTED_PYTHONS = ['3.7', '3.6', '3.5', '3.4', '3.3', '2.7']
_SAFE_PATHS = ['/usr/bin', '/usr/local/bin']
_CURRENT_VERSION = '%s.%s' % (sys.version_info.major, sys.version_info.minor)

Expand Down

0 comments on commit 1cf5b19

Please sign in to comment.