lockss-pybasic 0.2.0.dev9__tar.gz → 0.2.0.dev10__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.2.0.dev9
3
+ Version: 0.2.0.dev10
4
4
  Summary: Basic Python utilities
5
5
  License: BSD-3-Clause
6
6
  License-File: LICENSE
@@ -28,7 +28,7 @@ Description-Content-Type: text/x-rst
28
28
  lockss-pybasic
29
29
  ==============
30
30
 
31
- .. |RELEASE| replace:: 0.2.0-dev9
31
+ .. |RELEASE| replace:: 0.2.0-dev10
32
32
  .. |RELEASE_DATE| replace:: NOT YET RELEASED
33
33
 
34
34
  **Latest release:** |RELEASE| (|RELEASE_DATE|)
@@ -2,7 +2,7 @@
2
2
  lockss-pybasic
3
3
  ==============
4
4
 
5
- .. |RELEASE| replace:: 0.2.0-dev9
5
+ .. |RELEASE| replace:: 0.2.0-dev10
6
6
  .. |RELEASE_DATE| replace:: NOT YET RELEASED
7
7
 
8
8
  **Latest release:** |RELEASE| (|RELEASE_DATE|)
@@ -28,7 +28,7 @@
28
28
 
29
29
  [project]
30
30
  name = "lockss-pybasic"
31
- version = "0.2.0-dev9" # Always change in __init__.py, and at release time in README.rst and CHANGELOG.rst
31
+ version = "0.2.0-dev10" # 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.2.0-dev9'
39
+ __version__ = '0.2.0-dev10'
@@ -301,12 +301,12 @@ def click_path(spec: Optional[str]) -> click.Path:
301
301
  allow_dash = True
302
302
  else:
303
303
  raise ValueError(f'unknown specification character "{char}": {spec}')
304
- return click.Path(allow_dash=allow_dash,
305
- dir_okay=dir_okay,
306
- executable=executable,
307
- exists=exists,
308
- file_okay=file_okay,
309
- path_type=path_type,
310
- readable=readable,
311
- resolve_path=resolve_path,
312
- writable=writable)
304
+ return click.Path(allow_dash=allow_dash,
305
+ dir_okay=dir_okay,
306
+ executable=executable,
307
+ exists=exists,
308
+ file_okay=file_okay,
309
+ path_type=path_type,
310
+ readable=readable,
311
+ resolve_path=resolve_path,
312
+ writable=writable)