Skip to content

Commit f998d37

Browse files
committed
Update numpy to 2.1+ and pandas to 2.3+ for Python 3.13 Windows compatibility
Numpy 1.26.x causes access violations on Python 3.13 Windows. Numpy 2.1+ has proper Python 3.13 support with Windows wheels. Pandas 2.3+ is required for numpy 2.x compatibility.
1 parent f6935a3 commit f998d37

File tree

3 files changed

+61
-26
lines changed

3 files changed

+61
-26
lines changed

packages/graphrag-storage/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ dependencies = [
3535
"azure-identity~=1.19",
3636
"azure-storage-blob~=12.24",
3737
"graphrag-common==2.7.0",
38-
"pandas~=2.2",
38+
"pandas>=2.3.0",
3939
"pydantic~=2.10",
4040
]
4141

packages/graphrag/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ dependencies = [
4848
"fastuuid~=0.13",
4949
"networkx~=3.4",
5050
"nltk==3.9.1",
51-
"numpy~=1.26",
51+
"numpy>=2.1.0",
5252
"openai~=1.68",
53-
"pandas~=2.2",
53+
"pandas>=2.3.0",
5454
"pyarrow~=22.0",
5555
"pydantic~=2.10",
5656
"spacy~=3.8",

0 commit comments

Comments
 (0)