CytoTable 0.0.12__tar.gz → 0.0.13__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,8 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: CytoTable
3
- Version: 0.0.12
3
+ Version: 0.0.13
4
4
  Summary: Transform CellProfiler and DeepProfiler data for processing image-based profiling readouts with Pycytominer and other Cytomining tools.
5
- Home-page: https://github.com/cytomining/CytoTable
6
5
  License: BSD-3-Clause License
7
6
  Keywords: python,cellprofiler,single-cell-analysis,way-lab
8
7
  Author: Cytomining Community
@@ -3,7 +3,7 @@ __init__.py for cytotable
3
3
  """
4
4
 
5
5
  # note: version data is maintained by poetry-dynamic-versioning (do not edit)
6
- __version__ = "0.0.12"
6
+ __version__ = "0.0.13"
7
7
 
8
8
  from .convert import convert
9
9
  from .exceptions import (
@@ -415,7 +415,7 @@ def _arrow_type_cast_if_specified(
415
415
 
416
416
 
417
417
  def _expand_path(
418
- path: Union[str, pathlib.Path, AnyPath]
418
+ path: Union[str, pathlib.Path, AnyPath],
419
419
  ) -> Union[pathlib.Path, AnyPath]:
420
420
  """
421
421
  Expands "~" user directory references with the user's home directory, and expands variable references with values from the environment. After user/variable expansion, the path is resolved and an absolute path is returned.
@@ -569,7 +569,7 @@ def _unwrap_source(
569
569
  source: Union[
570
570
  Dict[str, Union[parsl.dataflow.futures.AppFuture, Any]],
571
571
  Union[parsl.dataflow.futures.AppFuture, Any],
572
- ]
572
+ ],
573
573
  ) -> Union[Dict[str, Any], Any]:
574
574
  """
575
575
  Helper function to unwrap futures from sources.
@@ -594,7 +594,7 @@ def _unwrap_source(
594
594
 
595
595
 
596
596
  def evaluate_futures(
597
- sources: Union[Dict[str, List[Dict[str, Any]]], List[Any], str]
597
+ sources: Union[Dict[str, List[Dict[str, Any]]], List[Any], str],
598
598
  ) -> Any:
599
599
  """
600
600
  Evaluates any Parsl futures for use within other tasks.
@@ -5,7 +5,7 @@ requires = [ "poetry-core>=1", "poetry-dynamic-versioning>=1,<2" ]
5
5
  [tool.poetry]
6
6
  name = "CytoTable"
7
7
  # note: version data is maintained by poetry-dynamic-versioning (do not edit)
8
- version = "0.0.12"
8
+ version = "0.0.13"
9
9
  description = "Transform CellProfiler and DeepProfiler data for processing image-based profiling readouts with Pycytominer and other Cytomining tools."
10
10
  authors = [ "Cytomining Community" ]
11
11
  license = "BSD-3-Clause License"
@@ -32,7 +32,7 @@ scipy = [
32
32
 
33
33
  [tool.poetry.group.dev.dependencies]
34
34
  pytest = ">=7.4,<9.0"
35
- pytest-cov = ">=4.1,<6.0"
35
+ pytest-cov = ">=4.1,<7.0"
36
36
  Sphinx = ">=6,<8"
37
37
  myst-parser = ">=2,<4"
38
38
  sphinxcontrib-mermaid = ">=0.9,<1.1"
@@ -41,6 +41,9 @@ pycytominer = "^1.1.0"
41
41
  dunamai = "^1.19.0"
42
42
  botocore = "^1.34.133" # added to help avoid dependency reolution issues
43
43
 
44
+ [tool.poetry.requires-plugins]
45
+ poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = [ "plugin" ] }
46
+
44
47
  [tool.poetry-dynamic-versioning]
45
48
  enable = false
46
49
  style = "pep440"
File without changes
File without changes