Skip to content

Commit c47883b

Browse files
committed
update changelog and readme
1 parent b856178 commit c47883b

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Common Changelog](https://common-changelog.org/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## Unreleased
8+
9+
### Changed
10+
11+
- Switched dependency management and packaging from Poetry to uv for faster installs and simplified workflow. ([#182](https://github.com/nasa/batchee/issues/182))([**@ank1m**](https://github.com/ank1m))
12+
713
## [1.5.2] - 2025-09-16
814

915
### Fixed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ git clone <Repository URL>
6565
cd batchee
6666
```
6767

68-
**(Option A) using poetry (Recommended for development):**
68+
**(Option A) using uv (Recommended for development):**
6969

7070
```shell
71-
# Install poetry: https://python-poetry.org/docs/
72-
poetry install
71+
# Install uv: https://docs.astral.sh/uv/getting-started/installation/
72+
uv sync
7373
```
7474

7575
**(Option B) using pip:**
@@ -86,9 +86,9 @@ pip install .
8686
batchee [file_names ...]
8787
```
8888

89-
### With Poetry (if installed via poetry)
89+
### With uv (if installed via uv)
9090
```shell
91-
poetry run batchee [file_names ...]
91+
uv run batchee [file_names ...]
9292
```
9393

9494
### Options

0 commit comments

Comments
 (0)