-
Notifications
You must be signed in to change notification settings - Fork 352
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
PyPi install issue #726
Comments
The PR: #727 |
Thanks Vlad! @stephenbach would you mind taking a look at this? I'm not sure if it's related but right now I can't even
|
@awebson This is due to python=3.7 requirement. If you use pip with any other version of python it cannot find promptsource at all. Do you know the reason behind such a strict python version requirement? Can we allow python>=3.7? |
FWIW, I did I'm not sure why we require 3.7 aside from the fact that the readme says “for stability reasons”. |
* Resolves PyPy install issue #726 * remove requirements in ci workflow Co-authored-by: VictorSanh <[email protected]>
I just did a patch release with your fix @Guitaricet @awebson , also tested this new release on Colab and it seems to work smoothly! |
Executing
pip install promptsource
causes the following error for meI was trying to understand what is a possible problem, but this one is confusing, because the previous line
with open("README.md", "r", encoding="utf-8") as readme_file:
also reads a local file and it does not fail.I will make a PR that removes
requirements.txt
in favor of explicitly providing a list of dependencies toinstall_requires
.The text was updated successfully, but these errors were encountered: