Skip to content

Commit 542a229

Browse files
committed
update readme to list uv
1 parent 39aacba commit 542a229

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,12 @@ aoc commands are:
5252

5353
### Installation
5454

55+
This project runs using [`uv`](https://github.com/astral-sh/uv)
56+
5557
```bash
56-
python3 -m venv .venv
57-
source .venv/bin/activate
58-
pip install -r requirements.txt
58+
# Install deps
59+
uv sync
60+
5961
# And now aoc can work
6062
./aoc run
6163
```
@@ -129,7 +131,7 @@ To participate, you'll have to create your own files containing your solutions (
129131
create them).
130132

131133
You can add other functions & modules if you need to. Any external dependency should be added to the appropriate files
132-
(`requirements.txt`, `package.json`, and so on).
134+
(`pyproject.toml`, `package.json`, and so on).
133135

134136
Once you tested your solution you can submit it by making a PR and a GitHub action will check that your code generates
135137
the same outputs as others' code.

0 commit comments

Comments
 (0)