ngio 0.2.10__py3-none-any.whl → 0.2.12__py3-none-any.whl

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.
@@ -21,21 +21,12 @@ from ngio.utils import NgioValueError, ngio_logger
21
21
 
22
22
  def path_in_well_validation(path: str) -> str:
23
23
  """Validate the path in the well."""
24
- if path.find("_") != -1:
25
- # Remove underscores from the path
26
- # This is a custom serialization step
27
- old_value = path
28
- path = path.replace("_", "")
29
- ngio_logger.warning(
30
- f"Underscores in well-paths are not allowed. "
31
- f"Path '{old_value}' was changed to '{path}'"
32
- f" to comply with the specification."
33
- )
34
24
  # Check if the value contains only alphanumeric characters
35
25
  if not path.isalnum():
36
- raise NgioValueError(
26
+ ngio_logger.warning(
37
27
  f"Path '{path}' contains non-alphanumeric characters. "
38
- f"Only alphanumeric characters are allowed."
28
+ "Only alphanumeric characters are allowed, "
29
+ "this might cause issues in some tools."
39
30
  )
40
31
  return path
41
32
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ngio
3
- Version: 0.2.10
3
+ Version: 0.2.12
4
4
  Summary: Next Generation file format IO
5
5
  Project-URL: homepage, https://github.com/lorenzocerrone/ngio
6
6
  Project-URL: repository, https://github.com/lorenzocerrone/ngio
@@ -16,7 +16,7 @@ Classifier: Programming Language :: Python :: 3.13
16
16
  Classifier: Typing :: Typed
17
17
  Requires-Python: <3.14,>=3.11
18
18
  Requires-Dist: aiohttp
19
- Requires-Dist: anndata>=0.8.0
19
+ Requires-Dist: anndata<0.11.4,>=0.8.0
20
20
  Requires-Dist: dask[array]
21
21
  Requires-Dist: dask[distributed]
22
22
  Requires-Dist: filelock
@@ -24,7 +24,7 @@ ngio/ome_zarr_meta/ngio_specs/__init__.py,sha256=05NQukZG0nNvjzf8AKWGu7PhjhQcImG
24
24
  ngio/ome_zarr_meta/ngio_specs/_axes.py,sha256=tHtx6NfBgDcCgDk9CosjIjw1KZJ2qi0i_eoLgrdiEWw,16681
25
25
  ngio/ome_zarr_meta/ngio_specs/_channels.py,sha256=2L-HM9K1Xu4qRI2MiXPqgCuHdCBRydEW1StThcqEuvY,15120
26
26
  ngio/ome_zarr_meta/ngio_specs/_dataset.py,sha256=hY8ogPPxvCgVg6k02t3zUr24lasYrvnxBd1iPEigdG4,5892
27
- ngio/ome_zarr_meta/ngio_specs/_ngio_hcs.py,sha256=uh345KQmEQtslIyMmLK9sB-NbjPYxi0Y9FuYIFhd3Rc,17465
27
+ ngio/ome_zarr_meta/ngio_specs/_ngio_hcs.py,sha256=TtjDJCJDYYBsEEwzGpdJswBFRzXUA07YDi_9ybs8M4I,17131
28
28
  ngio/ome_zarr_meta/ngio_specs/_ngio_image.py,sha256=8E38Mgw-l0Ff1nkmCJIzo64G_paAVhM8xktUS_V5egY,17960
29
29
  ngio/ome_zarr_meta/ngio_specs/_pixel_size.py,sha256=5TT8250XdCKUnk3OwZeyXIMNFKOg_jx4NnoCo9RLsXI,4079
30
30
  ngio/ome_zarr_meta/v04/__init__.py,sha256=dJRzzxyYc81kf-0Hip_bqvbdManaM8XTdQX2meWyCSs,583
@@ -51,7 +51,7 @@ ngio/utils/_errors.py,sha256=pKQ12LUjQLYE1nUawemA5h7HsgznjaSvV1n2PQU33N0,759
51
51
  ngio/utils/_fractal_fsspec_store.py,sha256=7qoGLiLi8JQFh9Ej_z5WNwQQuWrujb0f6p9nj8ocsS8,548
52
52
  ngio/utils/_logger.py,sha256=HIuqD_2ShfFGDswBddcouStbKfL0Vz_ah8cAIFGhbS8,888
53
53
  ngio/utils/_zarr_utils.py,sha256=qOI-HL2HsfFLCj_yxsTR-aq4oHpSqS9KR13aEIvhGDY,13593
54
- ngio-0.2.10.dist-info/METADATA,sha256=zKKD86qM9mMDMwDZGdn3fYFq7uLO8D5UuobZEFCuyVE,5216
55
- ngio-0.2.10.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
56
- ngio-0.2.10.dist-info/licenses/LICENSE,sha256=UgN_a1QCeNh9rZWfz-wORQFxE3elQzLWPQaoK6N6fxQ,1502
57
- ngio-0.2.10.dist-info/RECORD,,
54
+ ngio-0.2.12.dist-info/METADATA,sha256=1W9i9Rp0-TfTiPhAvug4xk-xmm6f_oybt3-rXEdjNVU,5224
55
+ ngio-0.2.12.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
56
+ ngio-0.2.12.dist-info/licenses/LICENSE,sha256=UgN_a1QCeNh9rZWfz-wORQFxE3elQzLWPQaoK6N6fxQ,1502
57
+ ngio-0.2.12.dist-info/RECORD,,
File without changes