mirror of https://github.com/microsoft/autogen.git
Require numpy be a 1.x release (#1966)
This commit is contained in:
parent
11df53bb39
commit
c2663330af
2
setup.py
2
setup.py
|
@ -18,6 +18,8 @@ install_requires = [
|
|||
"diskcache",
|
||||
"termcolor",
|
||||
"flaml",
|
||||
# numpy is installed by flaml, but we want to pin the version to below 2.x (see https://github.com/microsoft/autogen/issues/1960)
|
||||
"numpy>=1.17.0,<2",
|
||||
"python-dotenv",
|
||||
"tiktoken",
|
||||
# Disallowing 2.6.0 can be removed when this is fixed https://github.com/pydantic/pydantic/issues/8705
|
||||
|
|
Loading…
Reference in New Issue