You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Reusable workflow to set up Python and install dependencies via uv. The Python version and additional uv arguments can be configured via inputs."
7
+
inputs:
8
+
python:
9
+
default: "3.14"
10
+
description: "Value for 'python-version'"
11
+
required: false
12
+
type: string
13
+
uv_args:
14
+
default: ""
15
+
description: "Additional arguments for the uv install step'"
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,9 @@ This Project welcomes contributions, suggestions, and feedback. All contribution
11
11
12
12
## Development setup
13
13
14
-
Starting development is as easy as installing Python `poetry`and running `poetry install` once.
14
+
Starting development is as easy as installing [uv](https://docs.astral.sh/uv/)and running `uv sync` once.
15
15
16
-
In order to run the project in the new virtual environment, run `poetry run gh-org-mgr`.
16
+
In order to run the project in the new virtual environment, run `uv run gh-org-mgr`.
17
17
18
18
---
19
19
Based on [GitHub's Minimum Viable Governance (MVG)](https://github.com/github/MVG). Licensed under the [CC-BY 4.0 License](https://creativecommons.org/licenses/by/4.0/).
0 commit comments