-
Notifications
You must be signed in to change notification settings - Fork 18
feat(packaging): move to uv #918
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 8 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
7a832e5
feat(packaging): introduce uv
alexbass01 b0d346d
feat(packaging): wip workflows 1
alexbass01 f64fc6c
feat(packaging): wip workflows try fix lint and pytest
alexbass01 2133f1b
Merge remote-tracking branch 'upstream/master' into 222-uv
alexbass01 8b5d28d
feat(packaging): merge master
alexbass01 7d423a1
feat(packaging): fix lint
alexbass01 097f1a2
feat(packaging): wip migration 1
alexbass01 02075dc
feat(packaging): further fixes 1
alexbass01 cf865cb
feat(packaging): further fixes 2
alexbass01 4f552f2
feat(packaging): further fixes 3
alexbass01 56fc49b
feat(packaging): further fixes 4
alexbass01 b786f7f
Merge remote-tracking branch 'upstream/master' into 222-uv
alexbass01 052a80c
feat(packaging): further fixes 5
alexbass01 a88e920
feat(packaging): further fixes after llm review 1
alexbass01 00249dc
feat(packaging): Update README
alexbass01 30a07fc
feat(packaging): Test upated workflow versions
alexbass01 70a47b4
feat(packaging): Try fix devcontainer
alexbass01 166d8c2
PR Feedback
alexbass01 f6dcbfd
Pin Dockerfile versions to Python 3.12
alexbass01 593e189
Merge remote-tracking branch 'upstream/master' into 222-uv
alexbass01 e699ca0
Test trusted PR label
alexbass01 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
Some comments aren't visible on the classic Files Changed page.
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
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
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 |
|---|---|---|
|
|
@@ -19,4 +19,4 @@ if [[ -f "$ORIG" ]]; then | |
| fi | ||
| EOF | ||
| echo "Kubeconfig refresh hook added to $BASHRC" | ||
| fi | ||
| fi | ||
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
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 |
|---|---|---|
|
|
@@ -8,3 +8,7 @@ logs* | |
| .venv | ||
| kubeconfig | ||
| secrets/ | ||
| build/ | ||
| dist/ | ||
| *.egg-info/ | ||
| *.bak | ||
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 |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| include VERSION | ||
| recursive-include src *.py *.yaml *.conf |
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 |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| [build-system] | ||
| requires = ["setuptools"] | ||
| build-backend = "setuptools.build_meta" | ||
|
coderabbitai[bot] marked this conversation as resolved.
|
||
|
|
||
| [project] | ||
| name = "bdba-client" | ||
| version = "0.15.0" | ||
| requires-python = ">=3.12" | ||
| dependencies = [ | ||
| "cachecontrol", | ||
| "dacite", | ||
| "python-dateutil", | ||
| "requests", | ||
| ] | ||
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 @@ | ||
| [build-system] | ||
| requires = ["setuptools"] | ||
| build-backend = "setuptools.build_meta" | ||
|
|
||
| [project] | ||
| name = "odg-client" | ||
| description = "Client library for the Open Delivery Gear" | ||
| version = "0.12.0" | ||
| requires-python = ">=3.12" | ||
| dependencies = [ | ||
| "dacite", | ||
| "gardener-ocm", | ||
| "pycryptodome", | ||
| "pyjwt", | ||
| "requests", | ||
| ] |
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.
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.