Skip to content

Commit cd69f23

Browse files
committed
Other references/usages of poetry migrated to uv
1 parent 0a4879e commit cd69f23

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

pydis_site/apps/content/resources/guides/pydis-guides/contributing/bot-extended-configuration-options.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@ With at least the site running in Docker already (see the previous section on ho
140140
<div class="card-content">
141141
Notice that the bot is started as a module. There are several ways to do so:
142142
<ul>
143-
<li>Through the command line, inside the bot directory, with either <code>poetry run task start</code>, or directly <code>python -m bot</code>.</li>
143+
<li>Through the command line, inside the bot directory, with either <code>uv run task start</code>, or directly <code>python -m bot</code>.</li>
144144
<li>If using PyCharm, enter <code>Edit Configurations</code> and set everything according to this image: <img src="/static/images/content/contributing/pycharm_run_module.png"></li>
145-
<li>If using Visual Studio Code, set the interpreter to the poetry environment you created. In <code>launch.json</code> create a new Python configuration, and set the name of the program to be run to <code>bot</code>. VSC will correctly run it as a module.</li>
145+
<li>If using Visual Studio Code, set the interpreter to the uv environment you created. In <code>launch.json</code> create a new Python configuration, and set the name of the program to be run to <code>bot</code>. VSC will correctly run it as a module.</li>
146146
</ul>
147147
</div>
148148
</div>

pydis_site/apps/content/resources/guides/pydis-guides/contributing/linting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ If the linter complains, the commit is aborted so that you can fix the linting e
1111
That way, you never commit the problematic code in the first place!
1212

1313
Please refer to the project-specific documentation to see how to setup and run those tools.
14-
In most cases, you can install pre-commit using `poetry run task precommit`, and lint using `poetry run task lint` in the console.
14+
In most cases, you can install pre-commit using `uv run task precommit`, and lint using `uv run task lint` in the console.

static-builds/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ They are split into two parts:
1717
To get started with building, you can use the following command:
1818

1919
```shell
20-
poetry install
20+
uv sync
2121
python -m pip install httpx==0.19.0
22-
poetry run task static
22+
uv run task static
2323
```
2424

2525
Alternatively, you can use the [Dockerfile](/Dockerfile) and extract the build.

0 commit comments

Comments
 (0)