[llvm] 96c61f4 - [MLGO] Drop Python version cap for mlgo-utils
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 8 13:53:36 PDT 2024
Author: Aiden Grossman
Date: 2024-07-08T20:53:27Z
New Revision: 96c61f4304ae323e1abc2dc2cbdd4df0502520ae
URL: https://github.com/llvm/llvm-project/commit/96c61f4304ae323e1abc2dc2cbdd4df0502520ae
DIFF: https://github.com/llvm/llvm-project/commit/96c61f4304ae323e1abc2dc2cbdd4df0502520ae.diff
LOG: [MLGO] Drop Python version cap for mlgo-utils
This patch drops the python version cap for mlgo-utils. I have validated
that everything works as expected in Python 3.12, and we have no
dependencies when the library is used, so we should be fairly resiliant
against changes in Python.
Added:
Modified:
llvm/utils/mlgo-utils/pyproject.toml
Removed:
################################################################################
diff --git a/llvm/utils/mlgo-utils/pyproject.toml b/llvm/utils/mlgo-utils/pyproject.toml
index dac18a785c17b9..c3b4c78b6cd0b9 100644
--- a/llvm/utils/mlgo-utils/pyproject.toml
+++ b/llvm/utils/mlgo-utils/pyproject.toml
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
name = "mlgo"
description = "Tooling for ML in LLVM"
readme = "README.md"
-requires-python = ">=3.8,<3.11"
+requires-python = ">=3.8"
dynamic = ["version"]
license = {text = "Apache-2.0 WITH LLVM-exception"}
classifiers = [
More information about the llvm-commits
mailing list