File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed
Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 99from . import text
1010from . import url
1111
12- __version__ = "0.9.1 "
12+ __version__ = "0.9.2 "
Original file line number Diff line number Diff 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
2729def _update_version_readme (ver : str , pkg : str ):
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " dsutil"
3- version = " 0.9.1 "
3+ version = " 0.9.2 "
44description = " A utils Python package for data scientists."
55authors = [
" Benjamin Du <[email protected] >" ]
66
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ This is a Python pacakage that contains misc utils for Data Science.
2323
2424You 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```
2828Or you can use the following script to download and install the latest version automatically.
2929```
You can’t perform that action at this time.
0 commit comments