Skip to content

Commit de38f78

Browse files
committed
deps(docker): Upgrade to python-inspector 0.15.0
See [1]. Note that python-inspector can now "simulate" up to Python 3.14. [1]: https://github.com/aboutcode-org/python-inspector/releases/tag/v0.15.0 Signed-off-by: Sebastian Schuberth <sebastian@doubleopen.org>
1 parent 21ba6f9 commit de38f78

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.env.versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ NUGET_INSPECTOR_VERSION=0.9.12
1717
PHP_VERSION=8.3
1818
PIP_VERSION=25.2.0
1919
PYENV_GIT_TAG=v2.6.11
20-
PYTHON_INSPECTOR_VERSION=0.14.4
20+
PYTHON_INSPECTOR_VERSION=0.15.0
2121
PYTHON_PIPENV_VERSION=2023.12.1
2222
PYTHON_POETRY_VERSION=2.1.3
2323
PYTHON_POETRY_PLUGIN_EXPORT_VERSION=1.9.0

plugins/package-managers/python/src/funTest/kotlin/PoetryFunTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ class PoetryFunTest : WordSpec({
3535
"return the expected python version" {
3636
getPythonVersion("~3.10") shouldBe "3.10"
3737
getPythonVersion("^3.10,<3.11") shouldBe "3.10"
38-
getPythonVersion("^3.10") shouldBe "3.13"
39-
getPythonVersion("^3.11,<4.0") shouldBe "3.13"
40-
getPythonVersion("^3.10,<4.0") shouldBe "3.13"
38+
getPythonVersion("^3.10") shouldBe "3.14"
39+
getPythonVersion("^3.11,<4.0") shouldBe "3.14"
40+
getPythonVersion("^3.10,<4.0") shouldBe "3.14"
4141
}
4242

4343
"return null if constraint cannot be satisfied" {

0 commit comments

Comments
 (0)