Skip to content

Commit 80bf494

Browse files
committed
bump up version
1 parent d766e08 commit 80bf494

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

dsutil/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
from . import text
1010
from . import url
1111

12-
__version__ = "0.9.1"
12+
__version__ = "0.9.2"

dsutil/poetry.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ def _project_dir():
2121
if (path / TOML).is_file():
2222
return path
2323
path = path.parent
24-
raise RuntimeError(f'The current work directory {Path.cwd()} is not a (subdirectory of a) Python Poetry project.')
24+
raise RuntimeError(
25+
f'The current work directory {Path.cwd()} is not a (subdirectory of a) Python Poetry project.'
26+
)
2527

2628

2729
def _update_version_readme(ver: str, pkg: str):

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 = "dsutil"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
description = "A utils Python package for data scientists."
55
authors = ["Benjamin Du <[email protected]>"]
66

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This is a Python pacakage that contains misc utils for Data Science.
2323
2424
You can download a copy of the latest release and install it using pip.
2525
```
26-
pip3 install --user -U dsutil-0.0.1-py3-none-any.whl
26+
pip3 install --user -U dsutil-0.9.2-py3-none-any.whl
2727
```
2828
Or you can use the following script to download and install the latest version automatically.
2929
```

0 commit comments

Comments
 (0)