[Python]: Drop PyPy

GitOrigin-RevId: 41608a5a23f6aa5503fdeb8b37b637c7cb96896c
This commit is contained in:
Ilya.Kazakevich
2024-11-26 20:25:50 +01:00
committed by intellij-monorepo-bot
parent b199e0d6e6
commit 1ef66e99af
13 changed files with 4 additions and 226 deletions

View File

@@ -424,42 +424,6 @@
}
],
"title": "Python 3.8.10"
},
{
"version": "3.10.7313",
"product": "PyPy",
"sources": [
{
"url": "https://downloads.python.org/pypy/pypy3.10-v7.3.13-src.zip",
"size": 30067315,
"sha256": "828fc66eca1c097e44bc910c78ab773a98747268c7ce264da97022e5aca358dc",
"fileName": "pypy3.10-v7.3.13-src.zip",
"type": "COMPRESSED"
},
{
"url": "https://downloads.python.org/pypy/pypy3.10-v7.3.13-src.tar.bz2",
"size": 23067819,
"sha256": "4ac1733c19d014d3193c804e7f40ffccbf6924bcaaee1b6089b82b9bf9353a6d",
"fileName": "pypy3.10-v7.3.13-src.tar.bz2",
"type": "COMPRESSED"
}
],
"binaries": [
{
"os": "Windows",
"cpuArch": "X86_64",
"resources": [
{
"url": "https://downloads.python.org/pypy/pypy3.10-v7.3.13-win64.zip",
"size": 31510169,
"sha256": "5b99422fb8978b2f4bbf97961bca49963a82dc47c2fa51b7d23c493db3a2e0f0",
"fileName": "pypy3.10-v7.3.13-win64.zip",
"type": "COMPRESSED"
}
]
}
],
"title": "PyPy 3.10.7313"
}
],
"conda": [

View File

@@ -25,11 +25,10 @@ val LOG: Logger = logger<Sdks>()
/**
* Currently only CPython is supported, PyPy was added to check future structure flexibility.
* Currently only CPython is supported
*/
enum class Product(val title: String) {
CPython("Python"),
PyPy("PyPy"),
Miniconda("Miniconda"),
Anaconda("Anaconda");
}

View File

@@ -13,11 +13,6 @@ class SdksTest {
assert(SdksKeeper.pythonReleasesByLanguageLevel().isNotEmpty())
}
@Test
fun testPyPy() {
val releases = SdksKeeper.pythonReleasesByLanguageLevel()[LanguageLevel.PYTHON310]
assert(releases!!.any { it.product == Product.PyPy })
}
@Test
fun testCPythonAvailableFor311and312() {