diff --git a/.env.versions b/.env.versions index f8578123c01d3..7d4de11717136 100644 --- a/.env.versions +++ b/.env.versions @@ -17,7 +17,7 @@ NUGET_INSPECTOR_VERSION=0.9.12 PHP_VERSION=8.3 PIP_VERSION=25.2.0 PYENV_GIT_TAG=v2.6.11 -PYTHON_INSPECTOR_VERSION=0.14.4 +PYTHON_INSPECTOR_VERSION=0.15.0 PYTHON_PIPENV_VERSION=2023.12.1 PYTHON_POETRY_VERSION=2.1.3 PYTHON_POETRY_PLUGIN_EXPORT_VERSION=1.9.0 diff --git a/plugins/package-managers/python/src/funTest/kotlin/PoetryFunTest.kt b/plugins/package-managers/python/src/funTest/kotlin/PoetryFunTest.kt index 1630813f993bc..617c153383f22 100644 --- a/plugins/package-managers/python/src/funTest/kotlin/PoetryFunTest.kt +++ b/plugins/package-managers/python/src/funTest/kotlin/PoetryFunTest.kt @@ -35,9 +35,9 @@ class PoetryFunTest : WordSpec({ "return the expected python version" { getPythonVersion("~3.10") shouldBe "3.10" getPythonVersion("^3.10,<3.11") shouldBe "3.10" - getPythonVersion("^3.10") shouldBe "3.13" - getPythonVersion("^3.11,<4.0") shouldBe "3.13" - getPythonVersion("^3.10,<4.0") shouldBe "3.13" + getPythonVersion("^3.10") shouldBe "3.14" + getPythonVersion("^3.11,<4.0") shouldBe "3.14" + getPythonVersion("^3.10,<4.0") shouldBe "3.14" } "return null if constraint cannot be satisfied" {