Skip to content

Commit

Permalink
Change poetry mentions to uv (#307)
Browse files Browse the repository at this point in the history
Syntax is literally the same, but we actually use uv, and poetry usage seems to
dwindle within the Python ecosystem.
  • Loading branch information
nicholasjng authored Dec 20, 2024
1 parent 3828ab3 commit 2023a6e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ lakeFS-spec is published on PyPI, you can simply install it using your favorite

```shell
$ pip install lakefs-spec
# or
$ poetry add lakefs-spec
# or, for example with uv:
$ uv add lakefs-spec
```

## Usage
Expand Down
10 changes: 5 additions & 5 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ in a lakeFS repository using lakeFS-spec.

We generally recommend installing the library in a virtual environment to ensure proper isolation, especially when following this quickstart guide.

If you are using Poetry, virtual environments can automatically be created by the tool.
If you are using uv, virtual environments can automatically be created by the tool.

If you prefer the `venv` functionality built into Python, see the [official docs](https://docs.python.org/3/library/venv.html) (tl;dr: `python -m venv venv; source venv/bin/activate`).

Expand All @@ -37,10 +37,10 @@ To install the package directly from PyPI, run:
pip install lakefs-spec
```

=== "poetry"
=== "uv"

```
poetry add lakefs-spec
uv add lakefs-spec
```

Or, if you want to try the latest pre-release version directly from GitHub:
Expand All @@ -51,10 +51,10 @@ Or, if you want to try the latest pre-release version directly from GitHub:
pip install git+https://github.com/aai-institute/lakefs-spec.git
```

=== "poetry"
=== "uv"

```
poetry add git+https://github.com/aai-institute/lakefs-spec.git
uv add git+https://github.com/aai-institute/lakefs-spec.git
```

## First Steps
Expand Down

0 comments on commit 2023a6e

Please sign in to comment.