ghga-transpiler 2.1.0__tar.gz → 2.1.1__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 (25) hide show
  1. {ghga_transpiler-2.1.0/src/ghga_transpiler.egg-info → ghga_transpiler-2.1.1}/PKG-INFO +1 -1
  2. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/pyproject.toml +1 -1
  3. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/src/ghga_transpiler/__init__.py +1 -1
  4. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1/src/ghga_transpiler.egg-info}/PKG-INFO +1 -1
  5. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/LICENSE +0 -0
  6. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/README.md +0 -0
  7. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/setup.cfg +0 -0
  8. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/src/ghga_transpiler/__main__.py +0 -0
  9. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/src/ghga_transpiler/cli.py +0 -0
  10. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/src/ghga_transpiler/config/__init__.py +0 -0
  11. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/src/ghga_transpiler/config/config.py +0 -0
  12. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/src/ghga_transpiler/config/exceptions.py +0 -0
  13. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/src/ghga_transpiler/configs/__init__.py +0 -0
  14. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/src/ghga_transpiler/core.py +0 -0
  15. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/src/ghga_transpiler/io.py +0 -0
  16. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/src/ghga_transpiler/transformations.py +0 -0
  17. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/src/ghga_transpiler.egg-info/SOURCES.txt +0 -0
  18. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/src/ghga_transpiler.egg-info/dependency_links.txt +0 -0
  19. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/src/ghga_transpiler.egg-info/entry_points.txt +0 -0
  20. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/src/ghga_transpiler.egg-info/requires.txt +0 -0
  21. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/src/ghga_transpiler.egg-info/top_level.txt +0 -0
  22. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/tests/test_convert_workbook.py +0 -0
  23. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/tests/test_create_config.py +0 -0
  24. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/tests/test_io.py +0 -0
  25. {ghga_transpiler-2.1.0 → ghga_transpiler-2.1.1}/tests/test_process_workbook.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ghga_transpiler
3
- Version: 2.1.0
3
+ Version: 2.1.1
4
4
  Summary: GHGA-Transpiler - excel to JSON converter
5
5
  Author-email: "German Human Genome Phenome Archive (GHGA)" <contact@ghga.de>
6
6
  License: Apache 2.0
@@ -21,7 +21,7 @@ classifiers = [
21
21
  "Intended Audience :: Developers",
22
22
  ]
23
23
  name = "ghga_transpiler"
24
- version = "2.1.0"
24
+ version = "2.1.1"
25
25
  description = "GHGA-Transpiler - excel to JSON converter"
26
26
  dependencies = [
27
27
  "typer >= 0.12",
@@ -18,7 +18,7 @@
18
18
 
19
19
  from openpyxl.xml import DEFUSEDXML
20
20
 
21
- __version__ = "2.1.0"
21
+ __version__ = "2.1.1"
22
22
 
23
23
  if not DEFUSEDXML:
24
24
  raise RuntimeError(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ghga_transpiler
3
- Version: 2.1.0
3
+ Version: 2.1.1
4
4
  Summary: GHGA-Transpiler - excel to JSON converter
5
5
  Author-email: "German Human Genome Phenome Archive (GHGA)" <contact@ghga.de>
6
6
  License: Apache 2.0
File without changes