pheval-exomiser 0.2.6__tar.gz → 0.2.7__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 (17) hide show
  1. {pheval_exomiser-0.2.6 → pheval_exomiser-0.2.7}/PKG-INFO +3 -2
  2. {pheval_exomiser-0.2.6 → pheval_exomiser-0.2.7}/pyproject.toml +3 -2
  3. {pheval_exomiser-0.2.6 → pheval_exomiser-0.2.7}/README.md +0 -0
  4. {pheval_exomiser-0.2.6 → pheval_exomiser-0.2.7}/src/pheval_exomiser/__init__.py +0 -0
  5. {pheval_exomiser-0.2.6 → pheval_exomiser-0.2.7}/src/pheval_exomiser/cli.py +0 -0
  6. {pheval_exomiser-0.2.6 → pheval_exomiser-0.2.7}/src/pheval_exomiser/constants.py +0 -0
  7. {pheval_exomiser-0.2.6 → pheval_exomiser-0.2.7}/src/pheval_exomiser/post_process/__init__.py +0 -0
  8. {pheval_exomiser-0.2.6 → pheval_exomiser-0.2.7}/src/pheval_exomiser/post_process/post_process.py +0 -0
  9. {pheval_exomiser-0.2.6 → pheval_exomiser-0.2.7}/src/pheval_exomiser/post_process/post_process_results_format.py +0 -0
  10. {pheval_exomiser-0.2.6 → pheval_exomiser-0.2.7}/src/pheval_exomiser/prepare/__init__.py +0 -0
  11. {pheval_exomiser-0.2.6 → pheval_exomiser-0.2.7}/src/pheval_exomiser/prepare/create_batch_commands.py +0 -0
  12. {pheval_exomiser-0.2.6 → pheval_exomiser-0.2.7}/src/pheval_exomiser/prepare/tool_specific_configuration_options.py +0 -0
  13. {pheval_exomiser-0.2.6 → pheval_exomiser-0.2.7}/src/pheval_exomiser/prepare/write_application_properties.py +0 -0
  14. {pheval_exomiser-0.2.6 → pheval_exomiser-0.2.7}/src/pheval_exomiser/prepare/yaml_to_family_phenopacket.py +0 -0
  15. {pheval_exomiser-0.2.6 → pheval_exomiser-0.2.7}/src/pheval_exomiser/run/__init__.py +0 -0
  16. {pheval_exomiser-0.2.6 → pheval_exomiser-0.2.7}/src/pheval_exomiser/run/run.py +0 -0
  17. {pheval_exomiser-0.2.6 → pheval_exomiser-0.2.7}/src/pheval_exomiser/runner.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pheval_exomiser
3
- Version: 0.2.6
3
+ Version: 0.2.7
4
4
  Summary:
5
5
  Author: Yasemin Bridges
6
6
  Author-email: y.bridges@qmul.ac.uk
@@ -14,12 +14,13 @@ Classifier: Programming Language :: Python :: 3.13
14
14
  Requires-Dist: click (>=8.1.3,<9.0.0)
15
15
  Requires-Dist: docker (>=6.0.1,<7.0.0)
16
16
  Requires-Dist: google (>=3.0.0,<4.0.0)
17
+ Requires-Dist: numpy (<2)
17
18
  Requires-Dist: oaklib (>=0.5.12,<0.6.0)
18
19
  Requires-Dist: pandas (>=1.5.2,<2.0.0)
19
20
  Requires-Dist: phenopackets (>=2.0.2,<3.0.0)
20
21
  Requires-Dist: pheval (>=0.4.0,<0.5.0)
21
22
  Requires-Dist: pyaml (>=21.10.1,<22.0.0)
22
- Requires-Dist: pydantic (>=1.10.7,<2.0.0)
23
+ Requires-Dist: pydantic (>=2.7.1,<3.0.0)
23
24
  Description-Content-Type: text/markdown
24
25
 
25
26
  # Exomiser Runner for PhEval
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "pheval_exomiser"
3
- version = "0.2.6"
3
+ version = "0.2.7"
4
4
  description = ""
5
5
  authors = ["Yasemin Bridges <y.bridges@qmul.ac.uk>",
6
6
  "Julius Jacobsen <j.jacobsen@qmul.ac.uk>",
@@ -18,7 +18,8 @@ google = "^3.0.0"
18
18
  pyaml = "^21.10.1"
19
19
  oaklib = "^0.5.12"
20
20
  docker = "^6.0.1"
21
- pydantic = "^1.10.7"
21
+ pydantic = "^2.7.1"
22
+ numpy = "<2"
22
23
  pheval = "^0.4.0"
23
24
 
24
25
  [tool.poetry.dev-dependencies]