lockss-pybasic 0.3.0.dev8__tar.gz → 0.3.0.dev9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {lockss_pybasic-0.3.0.dev8 → lockss_pybasic-0.3.0.dev9}/PKG-INFO +3 -2
- {lockss_pybasic-0.3.0.dev8 → lockss_pybasic-0.3.0.dev9}/README.rst +2 -1
- {lockss_pybasic-0.3.0.dev8 → lockss_pybasic-0.3.0.dev9}/pyproject.toml +1 -1
- {lockss_pybasic-0.3.0.dev8 → lockss_pybasic-0.3.0.dev9}/src/lockss/pybasic/__init__.py +1 -1
- {lockss_pybasic-0.3.0.dev8 → lockss_pybasic-0.3.0.dev9}/src/lockss/pybasic/cliutil.py +2 -2
- {lockss_pybasic-0.3.0.dev8 → lockss_pybasic-0.3.0.dev9}/CHANGELOG.rst +0 -0
- {lockss_pybasic-0.3.0.dev8 → lockss_pybasic-0.3.0.dev9}/LICENSE +0 -0
- {lockss_pybasic-0.3.0.dev8 → lockss_pybasic-0.3.0.dev9}/src/lockss/pybasic/auidutil.py +0 -0
- {lockss_pybasic-0.3.0.dev8 → lockss_pybasic-0.3.0.dev9}/src/lockss/pybasic/errorutil.py +0 -0
- {lockss_pybasic-0.3.0.dev8 → lockss_pybasic-0.3.0.dev9}/src/lockss/pybasic/fileutil.py +0 -0
- {lockss_pybasic-0.3.0.dev8 → lockss_pybasic-0.3.0.dev9}/src/lockss/pybasic/nodeutil.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: lockss-pybasic
|
|
3
|
-
Version: 0.3.0.
|
|
3
|
+
Version: 0.3.0.dev9
|
|
4
4
|
Summary: Basic Python utilities
|
|
5
5
|
License: BSD-3-Clause
|
|
6
6
|
License-File: LICENSE
|
|
@@ -26,7 +26,8 @@ Description-Content-Type: text/x-rst
|
|
|
26
26
|
lockss-pybasic
|
|
27
27
|
==============
|
|
28
28
|
|
|
29
|
-
.. |RELEASE| replace:: 0.3.0-
|
|
29
|
+
.. |RELEASE| replace:: 0.3.0-dev9
|
|
30
|
+
|
|
30
31
|
.. |RELEASE_DATE| replace:: NOT YET RELEASED
|
|
31
32
|
|
|
32
33
|
**Latest release:** |RELEASE| (|RELEASE_DATE|)
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
|
|
29
29
|
[project]
|
|
30
30
|
name = "lockss-pybasic"
|
|
31
|
-
version = "0.3.0-
|
|
31
|
+
version = "0.3.0-dev9" # Always change in __init__.py, and at release time in README.rst and CHANGELOG.rst
|
|
32
32
|
description = "Basic Python utilities"
|
|
33
33
|
license = { text = "BSD-3-Clause" }
|
|
34
34
|
readme = "README.rst"
|
|
@@ -35,11 +35,11 @@ Command line utilities.
|
|
|
35
35
|
from pathlib import Path
|
|
36
36
|
from typing import Any, Optional, TypeAlias, Union
|
|
37
37
|
|
|
38
|
-
from click_extra import ChoiceSource, EnumChoice, ExtraContext, HelpExtraFormatter, IntRange, ParamType, Path, Style, TableFormat, option
|
|
38
|
+
from click_extra import ChoiceSource, EnumChoice, ExtraContext, HelpExtraFormatter, IntRange, ParamType, Path as _ClickPath, Style, TableFormat, option
|
|
39
39
|
from click_extra.theme import get_default_theme
|
|
40
40
|
|
|
41
41
|
|
|
42
|
-
ClickPath: TypeAlias =
|
|
42
|
+
ClickPath: TypeAlias = _ClickPath
|
|
43
43
|
|
|
44
44
|
|
|
45
45
|
def click_path(spec: Optional[str]) -> ClickPath:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|