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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+7-9Lines changed: 7 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,21 +33,19 @@ Additionally, the following resources might be useful:
33
33
### Repository Setup
34
34
35
35
As a first step you will need to fork this repository and clone your fork locally.
36
-
In order to be able to continously sync your fork with the origin repository's master branch, you will need to set up an upstream master. To do so follow this [official github guide](https://docs.github.com/en/free-pro-team@latest/github/collaborating-with-issues-and-pull-requests/syncing-a-fork).
36
+
In order to be able to continously sync your fork with the origin repository's master branch, you will need to set up an upstream master.
37
+
To do so follow this [official github guide](https://docs.github.com/en/free-pro-team@latest/github/collaborating-with-issues-and-pull-requests/syncing-a-fork).
37
38
38
39
### Dependency Setup
39
40
40
-
After your repository is setup you will then need to create and activate a git ignored virtual env, e.g.:
41
+
We use [uv](https://github.com/astral-sh/uv) to manage our dev dependencies.
42
+
To install it, see their [installation guide](https://docs.astral.sh/uv/getting-started/installation/)
41
43
42
-
```bash
43
-
python3 -m venv .venv
44
-
source .venv/bin/activate
45
-
```
46
-
47
-
Then install the dev requirements:
44
+
Once it's done, simply run the following command to automatically setup a virtual environment and install dev dependencies:
0 commit comments