-
Notifications
You must be signed in to change notification settings - Fork 3
chore: Migrate from Poetry to uv #135
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
Merged
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
369dd47
Migrate from Poetry to uv and mypy to ty
petercrocker cbe5990
pin uv version
petercrocker 28505d8
Revert ty back to mypy for type checking
petercrocker 01c44be
Improve CI workflow and project configuration
petercrocker 75c7df9
Add markdownlint and mypy to invoke lint task
petercrocker cd542d9
Revert accidental changes to synced documentation files
petercrocker 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # Default owners for everything in the repo | ||
|
|
||
| * @opsmill/sa |
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 |
|---|---|---|
|
|
@@ -146,8 +146,6 @@ venv.bak/ | |
|
|
||
| # mypy | ||
| .mypy_cache/ | ||
| .dmypy.json | ||
| dmypy.json | ||
|
|
||
| # Pyre type checker | ||
| .pyre/ | ||
|
|
||
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,13 +1,21 @@ | ||
| --- | ||
| # Markdownlint configuration | ||
| # https://github.com/DavidAnson/markdownlint | ||
|
|
||
| default: true | ||
| MD013: false # disables max line-length | ||
| MD014: false # dollar signs used before commands | ||
| MD024: false # disables 'no duplicate headings', which we use in tabs for instructions | ||
|
|
||
| # MD013/line-length - Line length (disabled for readability in prose) | ||
| MD013: false | ||
|
|
||
| # MD024/no-duplicate-heading - Multiple headings with the same content | ||
| # Allow duplicate headings in different sections (e.g., tabs) | ||
| MD024: | ||
| siblings_only: true | ||
|
|
||
| # MD025/single-title - Multiple top-level headings | ||
| # Prevent collisions with h1s and frontmatter titles | ||
| MD025: | ||
| front_matter_title: "" # prevent collisions with h1s and frontmatter titles | ||
| MD029: false # allows manually creating ordered lists | ||
| MD033: false # allows inline html to override markdown styles | ||
| MD034: false # no-bare-urls | ||
| MD041: false # allow 1st line to not be a top-level heading (required for Towncrier) | ||
| MD045: false # no alt text around images | ||
| MD047: false # single trailing newline | ||
| front_matter_title: "" | ||
|
|
||
| # MD060/table-column-style - Table column style (disabled for flexibility) | ||
| MD060: false |
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 |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| # Files to ignore | ||
|
|
||
| .claude/ | ||
| .git/ | ||
| .kiro/ | ||
| .mypy_cache/ | ||
| .ruff_cache/ | ||
| .venv/ | ||
| docs/.docusaurus/ | ||
| docs/build/ | ||
| docs/docs-* | ||
| docs/docs/ | ||
| docs/node_modules/ | ||
| docs/README.md | ||
| infrahub/ | ||
| node_modules/ |
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
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.