wilsonfreitas / python-bizdays

Business days calculations and utilities
http://wilsonfreitas.github.io/python-bizdays/
MIT License
80 stars 34 forks source link

Upgrade to numpy 2.x #51

Closed 0xg0nz0 closed 5 months ago

0xg0nz0 commented 5 months ago

I noticed when I installed bizdays it triggered a numpy downgrade:

 - numpy==2.0.0
 + numpy==1.26.4

The current pyproject.toml specifies numpy 1.x. It might be better to remove this entirely and then just pull in the numpy version corresponding to pandas 2.x:

numpy = ">=1.26.0"
wilsonfreitas commented 5 months ago

Done. Thanks!