-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spacy git dependency breaks pypi deploy #809
Comments
I fixed the initial dependency problem, but it looks like it's not very happy about the model dependency either:
|
Hi @kevinschaper, It looks like the issue stems from PyPI’s restriction on installing dependencies from external URLs—specifically, the SciSpacy model hosted on an S3 bucket. We had included the The Fix: To resolve this, we’ll need to remove any external URL references from the package metadata (like How to Handle the Model Installation in CI: To automate this, we can add a step in the GitHub Actions workflow to install the SciSpacy model during the CI build process. I noticed there’s a workflow called
This will download and install the model to the default location If this aligns with the fix you mentioned earlier, feel free to disregard this. I haven’t used Thank you! |
We should use pystow, assuming that we can give an alternate path to spacy. |
Our deploys of monarch-py as a library have been failing for a while, it looks like we need to get our spacy dependency pointed at a release version.
The text was updated successfully, but these errors were encountered: