Skip to content

Commit 38df3ae

Browse files
authored
Merge pull request #334 from dclong/dev
merge dev into main
2 parents 6ffbc02 + f36d0e6 commit 38df3ae

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

dsutil/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
from . import git
44
from . import poetry
55

6-
__version__ = "0.71.1"
6+
__version__ = "0.72.0"

dsutil/hadoop/log.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,14 @@ def _error_priority(line: str) -> tuple[int, str, str]:
319319
r"(?i)TypeError: withReplacement", 1,
320320
"https://www.legendu.net/misc/blog/spark-issue:-TypeError-withReplacement"
321321
),
322+
(
323+
"(?i)URISyntaxException", 1,
324+
"http://www.legendu.net/misc/blog/spark-issue:-URISyntaxException"
325+
),
326+
(
327+
"(?i)Could not find any configured addresses for URI", 1,
328+
"http://www.legendu.net/misc/blog/spark-issue:-RuntimeException:-Could-not-find-any-configured-addresses-for-URI"
329+
),
322330
(
323331
"(?i)table not found", 1,
324332
"https://www.legendu.net/misc/blog/spark-issue-table-not-found/"

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

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Currently, Python 3.7 and 3.8 are supported.
3838

3939
You can download a copy of the latest release and install it using pip.
4040
```bash
41-
pip3 install --user -U https://github.com/dclong/dsutil/releases/download/v0.71.1/dsutil-0.71.1-py3-none-any.whl
41+
pip3 install --user -U https://github.com/dclong/dsutil/releases/download/v0.72.0/dsutil-0.72.0-py3-none-any.whl
4242
```
4343
Or you can use the following command to install the latest master branch
4444
if you have pip 20.0+.
@@ -48,7 +48,7 @@ pip3 install --user -U git+https://github.com/dclong/dsutil@main
4848
Use one of the following commands if you want to install all components of dsutil.
4949
Available additional components are `cv`, `docker`, `pdf`, `jupyter`, `admin` and `all`.
5050
```bash
51-
pip3 install "dsutil[cv] @ https://github.com/dclong/dsutil/releases/download/v0.71.1/dsutil-0.71.1-py3-none-any.whl"
51+
pip3 install "dsutil[cv] @ https://github.com/dclong/dsutil/releases/download/v0.72.0/dsutil-0.72.0-py3-none-any.whl"
5252
# or
5353
pip3 install --user -U "dsutil[all] @ git+https://github.com/dclong/dsutil@main"
5454
```

0 commit comments

Comments
 (0)