blackary / st_pages

An experimental version of Streamlit Multi-Page Apps

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Remove numpy dependency specification

Wazarr94 opened this issue · comments

commented

Would it be possible to remove numpy from pyproject.toml?
I'm trying to use this library but I cannot install this library with poetry because I have numba v0.55.2, and numba requires numpy<1.23 while st_pages requires numpy>=1.23.4.

And from the src folder, it doesn't look like numpy is needed as an upfront dependency.
Thanks

To be honest, I'm not sure why I put that in. I think it should be fine to drop it, but would need to run the test suite to make sure.

To be honest, I'm not sure why I put that in. I think it should be fine to drop it, but would need to run the test suite to make sure.

most likely you just locked every package that was installed, not what you actually use. I haven't worked with poetry, but with pip there's a huge difference between pip freeze >requirements.txt and pipreqs ..