From 4b720388a3e07dfbfbfe7af6db841e705eaca591 Mon Sep 17 00:00:00 2001 From: Josue Nina Date: Mon, 9 Jun 2025 12:30:18 -0500 Subject: [PATCH] Update install_requires --- QuantConnectStubsGenerator/Renderer/SetupRenderer.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/QuantConnectStubsGenerator/Renderer/SetupRenderer.cs b/QuantConnectStubsGenerator/Renderer/SetupRenderer.cs index f916fda..39e4d0e 100644 --- a/QuantConnectStubsGenerator/Renderer/SetupRenderer.cs +++ b/QuantConnectStubsGenerator/Renderer/SetupRenderer.cs @@ -73,7 +73,11 @@ from AlgorithmImports import * ""License :: OSI Approved :: Apache Software License"", ""Programming Language :: Python :: 3"" ], - install_requires=[""pandas"", ""matplotlib""], + install_requires=[ + ""pandas<2.3.0; python_version<'3.10'"", + ""pandas>=2.3.0; python_version>='3.10'"", + ""matplotlib"" + ], packages=[ {string.Join(",\n", namespaces.Select(ns => new string(' ', 8) + $"\"{ns}\""))} ],