chore: pin numpy<2; tenacity!=8.4.0 (#7876)

* pin numpy<2

* reno

* pin tenacity too
This commit is contained in:
Stefano Fiorucci 2024-06-17 10:54:02 +02:00 committed by GitHub
parent 5a247138cb
commit 2413bb3f42
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 2 deletions

View File

@ -48,7 +48,7 @@ classifiers = [
dependencies = [
"pandas",
"tqdm",
"tenacity",
"tenacity!=8.4.0",
"lazy-imports",
"openai>=1.1.0",
"Jinja2",
@ -58,7 +58,7 @@ dependencies = [
"networkx", # Pipeline graphs
"typing_extensions>=4.7", # typing support for Python 3.8
"requests",
"numpy",
"numpy<2",
"python-dateutil",
]

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Pin numpy<2 to avoid breaking changes that cause several core integrations to fail.
Pin tenacity too (8.4.0 is broken).