Skip to content

Commit 3d148db

Browse files
committed
build: 👷 Migrate to uv
1 parent 7ea1e97 commit 3d148db

File tree

5 files changed

+599
-800
lines changed

5 files changed

+599
-800
lines changed

‎.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
name: Deploy docs
1111
runs-on: ubuntu-latest
1212
steps:
13-
- name: 'Checkout sources'
13+
- name: Checkout sources
1414
uses: actions/checkout@v4
1515

16-
- name: 'Deploy docs'
16+
- name: Deploy docs
1717
uses: mhausenblas/mkdocs-deploy-gh-pages@master
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

‎docs/development.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Development
22

3-
After installing dependencies with `poetry install`, CodeLimit can be run from
4-
the repository root like this:
3+
After installing dependencies with `uv sync`, CodeLimit can be run from the
4+
repository root like this:
55

66
```shell
7-
poetry run codelimit
7+
uv run codelimit
88
```
99

1010
For example, to check a codebase at `~/projects/fastapi` run:
1111

1212
```shell
13-
poetry run codelimit scan ~/projects/fastapi
13+
uv run codelimit scan ~/projects/fastapi
1414
```
1515

1616
## Local installation using pipx
@@ -38,21 +38,21 @@ pip install git+https://github.com/getcodelimit/codelimit.git@issue-123
3838
Generate a self-contained binary:
3939

4040
```shell
41-
poetry run poe bundle
41+
uv run poe bundle
4242
```
4343

4444
## Static documentation
4545

4646
Generating the static documentation:
4747

4848
```shell
49-
poetry run mkdocs build
49+
uv run mkdocs build
5050
```
5151

5252
See the output:
5353

5454
```shell
55-
poetry run mkdocs serve
55+
uv run mkdocs serve
5656
```
5757

5858
Terminal sessions in the documentation are recorded with the [Asciinema

0 commit comments

Comments
 (0)