mirror of
https://github.com/davidhalter/jedi.git
synced 2026-04-28 07:05:29 +08:00
Add 3.14 to the supported environments
This commit is contained in:
@@ -22,7 +22,7 @@ if TYPE_CHECKING:
|
||||
|
||||
_VersionInfo = namedtuple('VersionInfo', 'major minor micro') # type: ignore[name-match]
|
||||
|
||||
_SUPPORTED_PYTHONS = ['3.13', '3.12', '3.11', '3.10']
|
||||
_SUPPORTED_PYTHONS = ['3.14', '3.13', '3.12', '3.11', '3.10']
|
||||
_SAFE_PATHS = ['/usr/bin', '/usr/local/bin']
|
||||
_CONDA_VAR = 'CONDA_PREFIX'
|
||||
_CURRENT_VERSION = '%s.%s' % (sys.version_info.major, sys.version_info.minor)
|
||||
|
||||
@@ -26,7 +26,7 @@ def test_find_system_environments():
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
'version',
|
||||
['3.10', '3.11', '3.12', '3.13']
|
||||
jedi.api.environment._SUPPORTED_PYTHONS,
|
||||
)
|
||||
def test_versions(version):
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user