Skip to content

Commit 0f38417

Browse files
authored
Do not use specific versions of python 3.14 due to regressions in python (#5497)
The new GC in python 3.14 interacts poorly with arkouda. It was removed in python 3.14.5, so we disallow other versions of python 3.14 before that Signed-off-by: Jade Abraham <jade.abraham@hpe.com>
1 parent cd44a5b commit 0f38417

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "arkouda"
77
dynamic = ["version"] # <-- Versioneer will supply this
88
description = "Parallel, distributed NumPy-like arrays backed by Chapel"
99
readme = "README.md"
10-
requires-python = ">=3.9"
10+
requires-python = ">=3.9,!=3.14.0,!=3.14.1,!=3.14.2,!=3.14.3,!=3.14.4"
1111
license = "MIT"
1212
authors = [{ name = "U.S. Government" }]
1313
keywords = ["HPC","workflow","exploratory","analysis","parallel","distribute","arrays","Chapel"]

0 commit comments

Comments
 (0)