chisel 1.4.1__tar.gz → 1.4.3__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: chisel
3
- Version: 1.4.1
3
+ Version: 1.4.3
4
4
  Summary: Lightweight WSGI application framework, schema-validated JSON APIs, and API documentation
5
5
  Home-page: https://github.com/craigahobbs/chisel
6
6
  Author: Craig A. Hobbs
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = chisel
3
- version = 1.4.1
3
+ version = 1.4.3
4
4
  url = https://github.com/craigahobbs/chisel
5
5
  author = Craig A. Hobbs
6
6
  author_email = craigahobbs@gmail.com
@@ -7,7 +7,7 @@ Chisel documentation application
7
7
 
8
8
  import importlib.resources
9
9
  import os
10
- from pathlib import PosixPath
10
+ from pathlib import PurePosixPath
11
11
  import tarfile
12
12
 
13
13
  from schema_markdown import get_referenced_types
@@ -59,7 +59,7 @@ def create_doc_requests(requests=None, root_path='/doc', api=True, app=True, mar
59
59
  'Documentation'
60
60
  )
61
61
  if markdown_up or app:
62
- parent_posix = PosixPath(root_path).parent
62
+ parent_posix = PurePosixPath(root_path).parent
63
63
  with importlib.resources.files('chisel.static').joinpath('markdown-up.tar.gz').open('rb') as tgz:
64
64
  with tarfile.open(fileobj=tgz, mode='r:gz') as tar:
65
65
  for member in tar.getmembers():
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: chisel
3
- Version: 1.4.1
3
+ Version: 1.4.3
4
4
  Summary: Lightweight WSGI application framework, schema-validated JSON APIs, and API documentation
5
5
  Home-page: https://github.com/craigahobbs/chisel
6
6
  Author: Craig A. Hobbs
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes