CytoTable 0.0.4__tar.gz → 0.0.5__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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: CytoTable
3
- Version: 0.0.4
3
+ Version: 0.0.5
4
4
  Summary: Transform CellProfiler and DeepProfiler data for processing image-based profiling readouts with Pycytominer and other Cytomining tools.
5
5
  Home-page: https://github.com/cytomining/CytoTable
6
6
  License: BSD-3-Clause License
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 3.10
15
15
  Classifier: Programming Language :: Python :: 3.11
16
16
  Classifier: Programming Language :: Python :: 3.12
17
17
  Requires-Dist: cloudpathlib[all] (>=0.15.0,<0.16.0)
18
- Requires-Dist: duckdb (>=0.8.0)
18
+ Requires-Dist: duckdb (>=0.8.0,<0.10.0)
19
19
  Requires-Dist: parsl (>=2023.9.25)
20
20
  Requires-Dist: pyarrow (>=13.0.0)
21
21
  Project-URL: Documentation, https://cytomining.github.io/CytoTable/
@@ -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.4"
6
+ __version__ = "0.0.5"
7
7
 
8
8
  from .convert import convert
9
9
  from .exceptions import (
@@ -152,7 +152,8 @@ def _get_source_filepaths(
152
152
  # gather a common prefix to use for the group
153
153
  common_prefix = os.path.commonprefix(
154
154
  [
155
- source["source_path"].stem
155
+ # use lowercase version of the path to infer a commonprefix
156
+ source["source_path"].stem.lower()
156
157
  for source in sources
157
158
  if source["source_path"].suffix == f".{source_datatype}"
158
159
  ]
@@ -1,7 +1,7 @@
1
1
  [tool.poetry]
2
2
  name = "CytoTable"
3
3
  # note: version data is maintained by poetry-dynamic-versioning (do not edit)
4
- version = "0.0.4"
4
+ version = "0.0.5"
5
5
  description = "Transform CellProfiler and DeepProfiler data for processing image-based profiling readouts with Pycytominer and other Cytomining tools."
6
6
  authors = ["Cytomining Community"]
7
7
  license = "BSD-3-Clause License"
@@ -26,7 +26,7 @@ build-backend = "poetry_dynamic_versioning.backend"
26
26
  python = ">=3.8,<3.13"
27
27
  pyarrow = ">=13.0.0"
28
28
  cloudpathlib = {extras = ["all"], version = "^0.15.0"}
29
- duckdb = ">=0.8.0"
29
+ duckdb = ">=0.8.0,<0.10.0"
30
30
  parsl = ">=2023.9.25"
31
31
 
32
32
  [tool.poetry.group.dev.dependencies]
@@ -56,3 +56,9 @@ skips = ["B608"]
56
56
 
57
57
  [tool.codespell]
58
58
  ignore-words=".codespell-ignore"
59
+
60
+ [tool.pytest.ini_options]
61
+ filterwarnings = [
62
+ "ignore::DeprecationWarning:pkg_resources",
63
+ "ignore::DeprecationWarning:cytominer_database",
64
+ ]
File without changes
File without changes
File without changes