PYTHON-6001 Pin mockupdb to a released version instead of the master branch - #2982
Merged
Conversation
…branch Depend on mockupdb>=1.8.1 from PyPI instead of git+...@master so builds are reproducible and not subject to a moving branch or transient fetch failures against it.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR improves build/test reproducibility by switching the mockupdb dependency group from a moving Git master reference to a released PyPI version, and updating the uv.lock accordingly.
Changes:
- Updated
pyproject.tomlto usemockupdb>=1.8.1instead ofmockupdbfrom the GitHubmasterbranch. - Regenerated
uv.lockto reflect the PyPI-sourcedmockupdb==1.8.1and associated resolver/marker normalization.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| pyproject.toml | Replaces the Git master dependency reference with a released PyPI constraint for mockupdb. |
| uv.lock | Updates the lock to pull mockupdb==1.8.1 from PyPI and records resolver output changes. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
NoahStapp
approved these changes
Aug 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PYTHON-6001
Summary
pyproject.tomlinstalled themockupdbdependency group fromgit+https://github.com/mongodb-labs/mongo-mockup-db@master, a moving branch rather than a released version. Every environment resolving this group re-fetches whatever commit is currently on master, so builds aren't reproducible and a transient fetch failure against that branch can fail the mockupdb test tasks.Motivation
mongo-mockup-dbpublishes releases to PyPI; the latest is1.8.1. Master only has a "Post-release bump" commit past that tag (no functional changes), so pinning to the release is safe and removes the moving-target dependency.Changes
mockupdbdependency group inpyproject.tomlto depend onmockupdb>=1.8.1from PyPI instead of themastergit ref.uv.lockto reflect the pinned release (includes unrelated marker-simplification churn from the locally installeduvversion).Testing
uv lock --checkpasses.uv run --extra test --group mockupdb python -m pytest test/mockupdb -q -m mockupdb— 340 passed.just lintandjust typingboth pass.