PY-44838 Add frame evaluation support for Python 3.10 and drop it for Python 3.5

(cherry picked from commit 6012febbba0af24081078242c15f9eb782e07c65)

GitOrigin-RevId: ebfc4c723d3b674931da0a19803406057a034c72
This commit is contained in:
Andrey Lisin
2021-10-25 12:18:21 +02:00
committed by intellij-monorepo-bot
parent d53e217c62
commit 5c5168d2c7
70 changed files with 3651 additions and 3415 deletions

View File

@@ -40,6 +40,7 @@ envs {
String python37version = "3.7.9"
String python38version = "3.8.10"
String python39version = "3.9.5"
String python310version = "3.10.0"
bootstrapDirectory = new File(System.getenv().getOrDefault("PYCHARM_PYTHONS", new File(buildDir, 'pythons').path))
envsDirectory = new File(System.getenv().getOrDefault("PYCHARM_PYTHON_VIRTUAL_ENVS", new File(buildDir, 'envs').path))
@@ -128,6 +129,12 @@ envs {
"python3.9\npython3\npytest\nxdist\npackaging",
true)
createPython("python3.10",
python310version,
[],
"python3.10",
true)
// For tox
createPython("py36",
python36version,