pathling 9.4.0.dev0__tar.gz → 9.5.0__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 (33) hide show
  1. {pathling-9.4.0.dev0 → pathling-9.5.0}/PKG-INFO +1 -1
  2. {pathling-9.4.0.dev0 → pathling-9.5.0}/pathling/_version.py +2 -2
  3. {pathling-9.4.0.dev0 → pathling-9.5.0}/pyproject.toml +3 -1
  4. {pathling-9.4.0.dev0 → pathling-9.5.0}/.gitignore +0 -0
  5. {pathling-9.4.0.dev0 → pathling-9.5.0}/LICENSE +0 -0
  6. {pathling-9.4.0.dev0 → pathling-9.5.0}/README.md +0 -0
  7. {pathling-9.4.0.dev0 → pathling-9.5.0}/examples/bulk.py +0 -0
  8. {pathling-9.4.0.dev0 → pathling-9.5.0}/examples/data/bundles/Bennett146_Swaniawski813_704c9750-f6e6-473b-ee83-fbd48e07fe3f.json +0 -0
  9. {pathling-9.4.0.dev0 → pathling-9.5.0}/examples/data/bundles/Dino214_Parisian75_40d82b80-b682-cd8b-da6d-396809878641.json +0 -0
  10. {pathling-9.4.0.dev0 → pathling-9.5.0}/examples/data/csv/conditions.csv +0 -0
  11. {pathling-9.4.0.dev0 → pathling-9.5.0}/examples/data/resources/Condition.ndjson +0 -0
  12. {pathling-9.4.0.dev0 → pathling-9.5.0}/examples/data/resources/Patient.ndjson +0 -0
  13. {pathling-9.4.0.dev0 → pathling-9.5.0}/examples/designation.py +0 -0
  14. {pathling-9.4.0.dev0 → pathling-9.5.0}/examples/display.py +0 -0
  15. {pathling-9.4.0.dev0 → pathling-9.5.0}/examples/encode_bundles.py +0 -0
  16. {pathling-9.4.0.dev0 → pathling-9.5.0}/examples/encode_resources.py +0 -0
  17. {pathling-9.4.0.dev0 → pathling-9.5.0}/examples/fhir_search.py +0 -0
  18. {pathling-9.4.0.dev0 → pathling-9.5.0}/examples/fhir_view.py +0 -0
  19. {pathling-9.4.0.dev0 → pathling-9.5.0}/examples/member_of.py +0 -0
  20. {pathling-9.4.0.dev0 → pathling-9.5.0}/examples/property_of.py +0 -0
  21. {pathling-9.4.0.dev0 → pathling-9.5.0}/examples/subsumes.py +0 -0
  22. {pathling-9.4.0.dev0 → pathling-9.5.0}/examples/translate.py +0 -0
  23. {pathling-9.4.0.dev0 → pathling-9.5.0}/pathling/__init__.py +0 -0
  24. {pathling-9.4.0.dev0 → pathling-9.5.0}/pathling/bulk.py +0 -0
  25. {pathling-9.4.0.dev0 → pathling-9.5.0}/pathling/coding.py +0 -0
  26. {pathling-9.4.0.dev0 → pathling-9.5.0}/pathling/context.py +0 -0
  27. {pathling-9.4.0.dev0 → pathling-9.5.0}/pathling/core.py +0 -0
  28. {pathling-9.4.0.dev0 → pathling-9.5.0}/pathling/datasink.py +0 -0
  29. {pathling-9.4.0.dev0 → pathling-9.5.0}/pathling/datasource.py +0 -0
  30. {pathling-9.4.0.dev0 → pathling-9.5.0}/pathling/fhir.py +0 -0
  31. {pathling-9.4.0.dev0 → pathling-9.5.0}/pathling/functions.py +0 -0
  32. {pathling-9.4.0.dev0 → pathling-9.5.0}/pathling/spark.py +0 -0
  33. {pathling-9.4.0.dev0 → pathling-9.5.0}/pathling/udfs.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pathling
3
- Version: 9.4.0.dev0
3
+ Version: 9.5.0
4
4
  Summary: Python API for Pathling
5
5
  Project-URL: Homepage, https://github.com/aehrc/pathling
6
6
  Author-email: "Australian e-Health Research Centre, CSIRO" <pathling@csiro.au>
@@ -2,8 +2,8 @@
2
2
  # Auto generated from POM project version.
3
3
  # Please do not modify.
4
4
  #
5
- __version__="9.4.0.dev0"
6
- __java_version__="9.4.0-SNAPSHOT"
5
+ __version__="9.5.0"
6
+ __java_version__="9.5.0"
7
7
  __scala_version__="2.13"
8
8
  __delta_version__="4.0.0"
9
9
  __hadoop_version__="3.4.1"
@@ -1,4 +1,4 @@
1
- # Copyright © 2018-2025 Commonwealth Scientific and Industrial Research
1
+ # Copyright © 2018-2026 Commonwealth Scientific and Industrial Research
2
2
  # Organisation (CSIRO) ABN 41 687 119 230.
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -55,6 +55,8 @@ dev = [
55
55
  "pytest-cov==5.0.0",
56
56
  "http-server-mock==1.7",
57
57
  "ruff>=0.8.0",
58
+ "pandas>=2.3.3",
59
+ "pyarrow>=21.0.0",
58
60
  ]
59
61
 
60
62
  [tool.hatch.version]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes