json-schema-utils 0.8.2__tar.gz → 0.8.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.
Files changed (23) hide show
  1. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/PKG-INFO +1 -1
  2. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/json_schema_utils.egg-info/PKG-INFO +1 -1
  3. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/jsutils/scripts.py +1 -1
  4. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/pyproject.toml +1 -1
  5. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/.gitignore +0 -0
  6. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/LICENSE +0 -0
  7. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/MANIFEST.in +0 -0
  8. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/Makefile +0 -0
  9. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/README.md +0 -0
  10. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/json_schema_utils.egg-info/SOURCES.txt +0 -0
  11. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/json_schema_utils.egg-info/dependency_links.txt +0 -0
  12. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/json_schema_utils.egg-info/entry_points.txt +0 -0
  13. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/json_schema_utils.egg-info/requires.txt +0 -0
  14. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/json_schema_utils.egg-info/top_level.txt +0 -0
  15. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/jsutils/__init__.py +0 -0
  16. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/jsutils/convert.py +0 -0
  17. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/jsutils/inline.py +0 -0
  18. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/jsutils/recurse.py +0 -0
  19. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/jsutils/schemas.py +0 -0
  20. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/jsutils/simplify.py +0 -0
  21. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/jsutils/stats.py +0 -0
  22. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/jsutils/utils.py +0 -0
  23. {json_schema_utils-0.8.2 → json_schema_utils-0.8.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: json_schema_utils
3
- Version: 0.8.2
3
+ Version: 0.8.3
4
4
  Summary: JSON Schema Utils
5
5
  Author: Fabien Coelho, Claire Yannou-Medrala
6
6
  License-Expression: CC0-1.0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: json_schema_utils
3
- Version: 0.8.2
3
+ Version: 0.8.3
4
4
  Summary: JSON Schema Utils
5
5
  Author: Fabien Coelho, Claire Yannou-Medrala
6
6
  License-Expression: CC0-1.0
@@ -169,7 +169,7 @@ def jsu_check():
169
169
  try:
170
170
  if args.engine == "jschon":
171
171
  import jschon
172
- jschon.create_catalog(args.version)
172
+ jschon.create_catalog(args.draft)
173
173
  schema = jschon.JSONSchema(jschema)
174
174
 
175
175
  def check(data):
@@ -8,7 +8,7 @@ exclude = ["tests*"]
8
8
 
9
9
  [project]
10
10
  name = "json_schema_utils"
11
- version = "0.8.2"
11
+ version = "0.8.3"
12
12
  authors = [ { name = "Fabien Coelho" }, { name = "Claire Yannou-Medrala" } ]
13
13
  description = "JSON Schema Utils"
14
14
  readme = "README.md"