build: modernize openedx-webhooks to use uv and pyproject.toml#440
Open
farhan wants to merge 4 commits into
Open
build: modernize openedx-webhooks to use uv and pyproject.toml#440farhan wants to merge 4 commits into
farhan wants to merge 4 commits into
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #440 +/- ##
==========================================
- Coverage 89.84% 89.79% -0.06%
==========================================
Files 38 38
Lines 3103 3107 +4
Branches 239 239
==========================================
+ Hits 2788 2790 +2
- Misses 281 283 +2
Partials 34 34 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
6 tasks
farhan
force-pushed
the
farhan/modernize-python-repos
branch
2 times, most recently
from
July 27, 2026 08:50
123b6d8 to
735e6cb
Compare
- Replace setup.py/setup.cfg with pyproject.toml (PEP 621 static metadata) - Switch from pip-compile to uv with PEP 735 dependency groups; commit uv.lock - Move coverage config into pyproject.toml; delete .coveragerc - Update CI to use astral-sh/setup-uv; SHA-pin all actions; separate quality/docs/test envs - Mirror dev dependency group to include test group (matching dev.in -> test.in pattern) - Remove doc group from test deps to avoid inflating the test environment - Fix importlib.metadata import to appear in stdlib block (isort ordering) - Delete stale requirements.txt referencing removed requirements/ directory Part of openedx/public-engineering#506
farhan
force-pushed
the
farhan/modernize-python-repos
branch
from
July 27, 2026 08:52
735e6cb to
d6b0f5c
Compare
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
… name Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
farhan
marked this pull request as ready for review
July 27, 2026 09:13
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.
Important
PR implemented with the assistance of Claude Code. Refined and validated before being submitted for code review.
Modernize `openedx-webhooks`
Part of openedx/public-engineering#506
Summary
Removed/Updated
Deleted files: `setup.py`, `setup.cfg`, `requirements/`, `.coveragerc`
Removed Makefile targets:
Updated Makefile targets:
Versioning
Static: `version = "0.1.0"` declared directly in `pyproject.toml` — this repo does not publish to PyPI, so `setuptools-scm` is not used and the version is bumped manually on each release tag.
Important Notes
Testing Notes
This PR has not been manually tested against the repo's own features. Testing relied on CI checks and local agent tooling (`make install-dev-requirements`, `uv run tox -e py`, `uv run tox -e quality`, `uv run tox -e docs`). Repo-owner is encouraged to run the repo's feature tests before merging.
🤖 Generated with Claude Code