Skip to content

Commit 9855613

Browse files
committed
Improve docs
- improved library installation command for compatibility with zsh
1 parent f8200c3 commit 9855613

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ You can install the library like this:
3535
- from pypi
3636

3737
```
38-
pip install runtime-config-py[aiohttp]
38+
pip install "runtime-config-py[aiohttp]"
3939
```
4040

4141
or

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "runtime-config-py"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
description = "Library for runtime updating project settings."
55
license = "MIT"
66
authors = ["Aleksey Petrunnik <petrunnik.a@gmail.com>"]

src/runtime_config/sources/config_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
except ImportError: # pragma: no cover
1212
raise ImportError(
1313
'Missing dependencies for ConfigServerSrc support. Please reinstall the library with '
14-
'extras "aiohttp". Example: pip install runtime-config-py[aiohttp]'
14+
'extras "aiohttp". Example: pip install "runtime-config-py[aiohttp]"'
1515
)
1616
import pydantic
1717

0 commit comments

Comments
 (0)