-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
poetry not recording hashes of modules from pypicloud server #1553
Comments
This looks to be the same issue as #1631. As of version 1.1.0, pypicloud does generate hashes for its links. If you have a mass of packages without hashes, there are scripts for recalculating those hashes which should make pypicloud serve the hashes correctly for already uploaded packages: |
In some cases, legacy repositories might not provide a checksum as a url fragment or use a deprecated algorithm. In these scenarios, this change ensures that poetry downloads and calculates the sha256 checksum for the file. Resolves: python-poetry#1631 python-poetry#1553
In some cases, legacy repositories might not provide a checksum as a url fragment or use a deprecated algorithm. In these scenarios, this change ensures that poetry downloads and calculates the sha256 checksum for the file. Resolves: python-poetry#1631 python-poetry#1553
In some cases, legacy repositories might not provide a checksum as a url fragment or use a deprecated algorithm. In these scenarios, this change ensures that poetry downloads and calculates the sha256 checksum for the file. Resolves: python-poetry#1631 python-poetry#1553
In some cases, legacy repositories might not provide a checksum as a url fragment or use a deprecated algorithm. In these scenarios, this change ensures that poetry downloads and calculates the sha256 checksum for the file. Resolves: python-poetry#1631 python-poetry#1553
Resolved-by: #2958 |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
I am on the latest Poetry version.
I have searched the issues of this repo and believe that this is not a duplicate.
If an exception occurs when executing a command, I executed it again in debug mode (
-vvv
option).OSX 10.15.1:
Poetry version: 1.0.0b3:
Issue
We have a pypi cloud server (https://github.com/stevearc/pypicloud) which doesn't return hashes of the files it stores. On it we have several .tar.gz sdist packages. Via pipenv it generates hashes for modules that it picks up from that server, but via poetry they're all missing hashes, ex:
seems like it's missing the codepath to download the module and generate a hash for the file it's going to lock to.
The text was updated successfully, but these errors were encountered: