Migrate from Poetry to uv for Python package management#8
Merged
jeffabailey merged 3 commits intomainfrom Oct 24, 2025
Merged
Conversation
- Convert pyproject.toml to modern PEP 621 format using setuptools backend - Update GitHub Actions workflow to use astral-sh/setup-uv action - Replace all Poetry commands with uv equivalents (sync, run) - Update documentation in TESTING.md and README.md - Remove poetry.lock and add uv.lock This migration improves dependency resolution speed and aligns with modern Python packaging standards while maintaining full compatibility. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
…xt_lazy The ugettext_lazy function was deprecated in Django 3.0 and removed in Django 4.0+. Updated to use the modern gettext_lazy import instead. Changes: - tasks/views.py: Replace ugettext_lazy import - users/views.py: Replace ugettext_lazy import This fixes the ImportError that prevented Django checks and migrations from running successfully. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Django's LogoutView requires POST requests by default for security (CSRF protection). Updated two failing tests to use POST instead of GET. Fixed tests: - UserViewTest.test_logout_view_accessible - UserAuthenticationTest.test_user_logout This resolves the 405 Method Not Allowed errors that were causing test failures. Test results: All 21 tests now pass (previously 2 failed, 19 passed) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
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.
This migration improves dependency resolution speed and aligns with modern Python packaging standards while maintaining full compatibility.
🤖 Generated with Claude Code
Description
Type of Change
Testing
Tests Added/Modified
Test Commands Run
Coverage
Checklist
Related Issues
Closes #
Additional Notes