-
-
Notifications
You must be signed in to change notification settings - Fork 47
Migrate from Poetry to UV and bring project up to speed with 2026 standards #461
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
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
c02c18d
Refactor code structure for improved readability and maintainability
iMicknl 5564d11
Update dependabot configuration to use 'uv' package ecosystem and cha…
iMicknl c9bbd51
Update devcontainer settings for pytest configuration and formatting
iMicknl 75a97d5
Replace code quality tools with ruff for linting and formatting in de…
iMicknl 0dff3e5
Remove Flake8 and Pylint matchers; update pre-commit configuration to…
iMicknl b23eb59
Update prek/pre-commit config
iMicknl cca912d
Update Python version markers in uv.lock to support Python 3.10 and a…
iMicknl da369a7
Initial fixes
iMicknl 34c2366
Fixes
iMicknl e1428e0
Add Ruff as a VSCode extension for improved linting support
iMicknl 7275f42
Implement structural updates and clean up codebase for improved reada…
iMicknl 603a8d3
Remove deprecated GitHub Actions workflow for publishing Python package
iMicknl 6f38778
Update release drafter to version 7 and adjust permissions
iMicknl a24f9b8
Add permissions to PR Labeler workflow for enhanced access control
iMicknl 3e9e2b3
Refactor prek checks in CI workflow for improved clarity and function…
iMicknl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,15 @@ | ||
| version: 2 | ||
| updates: | ||
| - package-ecosystem: pip | ||
| - package-ecosystem: uv | ||
| directory: "/" | ||
| schedule: | ||
| interval: "daily" | ||
| interval: "weekly" | ||
| time: "08:00" | ||
| open-pull-requests-limit: 10 | ||
|
|
||
| - package-ecosystem: github-actions | ||
| directory: "/" | ||
| schedule: | ||
| interval: "daily" | ||
| interval: "weekly" | ||
| time: "08:00" | ||
| open-pull-requests-limit: 10 |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,7 @@ | ||
| name: PR Labeler | ||
| permissions: | ||
| contents: read | ||
| pull-requests: write | ||
| on: | ||
| pull_request: | ||
| types: [opened] | ||
|
|
||
This file was deleted.
Oops, something went wrong.
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,42 +1,42 @@ | ||
| # See https://pre-commit.com for more information | ||
| # See https://pre-commit.com/hooks.html for more hooks | ||
| repos: | ||
| - repo: https://github.com/pre-commit/pre-commit-hooks | ||
| rev: v4.6.0 | ||
| - repo: https://github.com/astral-sh/ruff-pre-commit | ||
| # Ruff version. | ||
| rev: v0.14.10 | ||
| hooks: | ||
| # Run the linter. | ||
| - id: ruff-check | ||
| args: [ --fix ] | ||
| # Run the formatter. | ||
| - id: ruff-format | ||
| - repo: https://github.com/pre-commit/pre-commit-hooks | ||
| rev: v6.0.0 | ||
| hooks: | ||
| - id: check-json | ||
| - id: trailing-whitespace | ||
| - id: end-of-file-fixer | ||
| - id: check-json | ||
| exclude: .devcontainer | ||
| - id: check-yaml | ||
| - id: trailing-whitespace | ||
| - id: end-of-file-fixer | ||
| - repo: local | ||
| - id: check-yaml | ||
| - id: check-added-large-files | ||
| - id: no-commit-to-branch | ||
| stages: [pre-commit] | ||
| args: [--branch, main] | ||
| - repo: https://github.com/rhysd/actionlint | ||
| rev: v1.7.7 | ||
| hooks: | ||
| - id: actionlint | ||
| - repo: local | ||
| hooks: | ||
| - id: black | ||
| name: black | ||
| entry: black | ||
| language: system | ||
| types: [ python ] | ||
| - id: flake8 | ||
| name: flake8 | ||
| entry: flake8 | ||
| language: system | ||
| types: [ python ] | ||
| - id: isort | ||
| name: isort | ||
| entry: isort | ||
| language: system | ||
| types: [ python ] | ||
| - id: pyupgrade | ||
| name: pyupgrade | ||
| entry: pyupgrade | ||
| args: ["--py37-plus"] | ||
| language: system | ||
| types: [ python ] | ||
| - id: mypy | ||
| name: mypy | ||
| entry: mypy | ||
| language: system | ||
| types: [ python ] | ||
| - id: pylint | ||
| name: pylint | ||
| entry: pylint | ||
| exclude: tests | ||
| - id: ty | ||
| name: ty check | ||
| entry: uv run ty check . | ||
| language: system | ||
| types: [ python ] | ||
| exclude: tests |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.