This message was deleted.
# give-feedback
w
This message was deleted.
f
Thanks Quinn, we'll take a look at these two issues
🙌 1
f
You shouldn't need to use poetry, that's just used for building. I don't think we're specifying runtime dependencies correctly for pip though. The
gbstats
package just requires the following: • numpy • scipy • pandas
I'm fairly new to publishing on pypi so still figuring out the proper way to package everything together
b
Yeah I think an easy way to fix is to run `
Copy code
poetry export -f requirements.txt --output requirements.txt
before you push a release
That tells poetry to generate a requirements file for pip so pip can understand the pkg's dependencies. I dont know much about poetry so there may be a nicer way to make that happen automatically or include pip-readable deps in pyproject.toml(??) but I poked around a bit and wasnt able to find anything about that sort of thing
141 Views