Skip to content

Commit

Permalink
Release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dormant-user committed Nov 27, 2024
1 parent 2fa5092 commit 445a9ac
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,13 @@ PyUdisk is a wrapper around the `udisksctl` command-line tool to generate a comp
- Install `python` [3.10] or [3.11]
- Use a dedicated [virtual environment]

```bash
For monitoring and reporting, use
```shell
pip install PyUdisk[standard]
```

For basic functionality, use
```shell
pip install PyUdisk
```

Expand Down
2 changes: 1 addition & 1 deletion pyudisk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from .main import EnvConfig, generate_report, monitor, smart_metrics # noqa: F401

version = "0.0.3"
version = "0.1.0"


@click.command()
Expand Down
2 changes: 1 addition & 1 deletion pyudisk/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ def size_converter(byte_size: int | float) -> str:

def standard() -> NoReturn:
"""Raises environment error to install standard package."""
raise EnvironmentError("For full usage, run 'pip install PyUdisk[standard]'")
raise NotImplementedError("\n\tFor full usage, run 'pip install PyUdisk[standard]'")

0 comments on commit 445a9ac

Please sign in to comment.