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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lockss-pybasic
3
- Version: 0.3.0.dev8
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-dev8
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|)
@@ -2,7 +2,8 @@
2
2
  lockss-pybasic
3
3
  ==============
4
4
 
5
- .. |RELEASE| replace:: 0.3.0-dev8
5
+ .. |RELEASE| replace:: 0.3.0-dev9
6
+
6
7
  .. |RELEASE_DATE| replace:: NOT YET RELEASED
7
8
 
8
9
  **Latest release:** |RELEASE| (|RELEASE_DATE|)
@@ -28,7 +28,7 @@
28
28
 
29
29
  [project]
30
30
  name = "lockss-pybasic"
31
- version = "0.3.0-dev8" # Always change in __init__.py, and at release time in README.rst and CHANGELOG.rst
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"
@@ -36,4 +36,4 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36
36
  POSSIBILITY OF SUCH DAMAGE.
37
37
  '''.strip()
38
38
 
39
- __version__ = '0.3.0-dev8'
39
+ __version__ = '0.3.0-dev9'
@@ -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 = Path
42
+ ClickPath: TypeAlias = _ClickPath
43
43
 
44
44
 
45
45
  def click_path(spec: Optional[str]) -> ClickPath: