Skip to content

Commit 897e134

Browse files
committed
add uv tree solution
1 parent af0c111 commit 897e134

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

s1_development_environment/package_manager.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,8 @@ to make it work.
256256

257257
```bash
258258
uv pip list
259+
# or
260+
uv tree
259261
```
260262

261263
4. The above is the very basic of `uv` and is actually not the recommended way of using `uv`. Instead, `uv` works best

tools/course_stats/viz.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
@app.command()
2525
def plot_students():
2626
"""Plot the number of students over the years."""
27-
year = [2021, 2022, 2023, 2024, 2025]
28-
students = [60, 102, 196, 275, 374]
27+
year = [2021, 2022, 2023, 2024, 2025, 2026]
28+
students = [60, 102, 196, 275, 374, 450]
2929

3030
# Calculate year-over-year percentage increase
3131
percentage_increase = [0] # No increase for the first year

0 commit comments

Comments
 (0)