-
Notifications
You must be signed in to change notification settings - Fork 4
fix: update fastapi version and correct variable name for sample poin… #499
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -145,7 +145,7 @@ def _transfer_hook(self, session: Session) -> None: | |||||
| set_={ | ||||||
| "chemistry_sample_info_id": excluded.chemistry_sample_info_id, | ||||||
| "nma_chemistry_sample_info_uuid": excluded.nma_chemistry_sample_info_uuid, | ||||||
| "nma_sample_point_id": excluded.nma_sample_point_id, | ||||||
| "nma_SamplePointID": excluded.nma_SamplePointID, | ||||||
|
||||||
| "nma_SamplePointID": excluded.nma_SamplePointID, | |
| "nma_sample_point_id": excluded.nma_sample_point_id, |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The requirement was updated to
fastapi==0.128.0, but the two hashes on this entry are still the previous release hashes (they no longer match the 0.128.0 artifacts recorded inuv.lockaround the FastAPI package block). Any environment installing from this pinned, hash-based requirements file in hash-checking mode (e.g.,pip install --require-hashes -r requirements.txt) will fail with a hash mismatch and block dependency installation.Useful? React with 👍 / 👎.