1
0
mirror of https://github.com/elisspace/core.git synced 2026-08-29 15:43:55 +00:00

Disable profiler.memory service with python 3.11 (#88136)

This commit is contained in:
J. Nick Koston
2023-02-15 09:20:47 -06:00
committed by GitHub
parent 6254200b37
commit 61539686a4
7 changed files with 38 additions and 4 deletions

View File

@@ -90,7 +90,7 @@ def validate_requirements_format(integration: Integration) -> bool:
if not version:
continue
for part in version.split(","):
for part in version.split(";", 1)[0].split(","):
version_part = PIP_VERSION_RANGE_SEPARATOR.match(part)
if (
version_part