cellfinder 1.4.1__tar.gz → 1.5.1__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.

Potentially problematic release.


This version of cellfinder might be problematic. Click here for more details.

Files changed (72) hide show
  1. {cellfinder-1.4.1 → cellfinder-1.5.1}/.github/workflows/test_and_deploy.yml +3 -3
  2. {cellfinder-1.4.1 → cellfinder-1.5.1}/.github/workflows/test_include_guard.yaml +1 -1
  3. {cellfinder-1.4.1 → cellfinder-1.5.1}/PKG-INFO +4 -3
  4. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/napari/curation.py +2 -2
  5. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder.egg-info/PKG-INFO +4 -3
  6. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder.egg-info/requires.txt +1 -0
  7. {cellfinder-1.4.1 → cellfinder-1.5.1}/pyproject.toml +6 -5
  8. {cellfinder-1.4.1 → cellfinder-1.5.1}/.gitignore +0 -0
  9. {cellfinder-1.4.1 → cellfinder-1.5.1}/.napari/config.yml +0 -0
  10. {cellfinder-1.4.1 → cellfinder-1.5.1}/CITATION.cff +0 -0
  11. {cellfinder-1.4.1 → cellfinder-1.5.1}/LICENSE +0 -0
  12. {cellfinder-1.4.1 → cellfinder-1.5.1}/MANIFEST.in +0 -0
  13. {cellfinder-1.4.1 → cellfinder-1.5.1}/README.md +0 -0
  14. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/__init__.py +0 -0
  15. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/cli_migration_warning.py +0 -0
  16. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/__init__.py +0 -0
  17. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/classify/__init__.py +0 -0
  18. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/classify/augment.py +0 -0
  19. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/classify/classify.py +0 -0
  20. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/classify/cube_generator.py +0 -0
  21. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/classify/resnet.py +0 -0
  22. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/classify/tools.py +0 -0
  23. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/config/__init__.py +0 -0
  24. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/config/cellfinder.conf +0 -0
  25. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/detect/__init__.py +0 -0
  26. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/detect/detect.py +0 -0
  27. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/detect/filters/__init__.py +0 -0
  28. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/detect/filters/plane/__init__.py +0 -0
  29. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/detect/filters/plane/classical_filter.py +0 -0
  30. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/detect/filters/plane/plane_filter.py +0 -0
  31. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/detect/filters/plane/tile_walker.py +0 -0
  32. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/detect/filters/setup_filters.py +0 -0
  33. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/detect/filters/volume/__init__.py +0 -0
  34. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/detect/filters/volume/ball_filter.py +0 -0
  35. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/detect/filters/volume/structure_detection.py +0 -0
  36. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/detect/filters/volume/structure_splitting.py +0 -0
  37. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/detect/filters/volume/volume_filter.py +0 -0
  38. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/download/__init__.py +0 -0
  39. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/download/cli.py +0 -0
  40. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/download/download.py +0 -0
  41. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/main.py +0 -0
  42. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/tools/IO.py +0 -0
  43. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/tools/__init__.py +0 -0
  44. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/tools/array_operations.py +0 -0
  45. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/tools/geometry.py +0 -0
  46. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/tools/image_processing.py +0 -0
  47. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/tools/prep.py +0 -0
  48. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/tools/source_files.py +0 -0
  49. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/tools/system.py +0 -0
  50. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/tools/threading.py +0 -0
  51. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/tools/tiff.py +0 -0
  52. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/tools/tools.py +0 -0
  53. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/train/__init__.py +0 -0
  54. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/train/train_yml.py +0 -0
  55. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/core/types.py +0 -0
  56. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/napari/__init__.py +0 -0
  57. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/napari/detect/__init__.py +0 -0
  58. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/napari/detect/detect.py +0 -0
  59. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/napari/detect/detect_containers.py +0 -0
  60. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/napari/detect/thread_worker.py +0 -0
  61. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/napari/input_container.py +0 -0
  62. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/napari/napari.yaml +0 -0
  63. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/napari/sample_data.py +0 -0
  64. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/napari/train/__init__.py +0 -0
  65. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/napari/train/train.py +0 -0
  66. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/napari/train/train_containers.py +0 -0
  67. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder/napari/utils.py +0 -0
  68. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder.egg-info/SOURCES.txt +0 -0
  69. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder.egg-info/dependency_links.txt +0 -0
  70. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder.egg-info/entry_points.txt +0 -0
  71. {cellfinder-1.4.1 → cellfinder-1.5.1}/cellfinder.egg-info/top_level.txt +0 -0
  72. {cellfinder-1.4.1 → cellfinder-1.5.1}/setup.cfg +0 -0
@@ -50,13 +50,13 @@ jobs:
50
50
  matrix:
51
51
  # Run all supported Python versions on linux
52
52
  os: [ubuntu-latest]
53
- python-version: ["3.10", "3.11", "3.12"]
53
+ python-version: ["3.11", "3.12", "3.13"]
54
54
  # Include one windows and one macOS (arm based) run
55
55
  include:
56
56
  - os: macos-latest
57
- python-version: "3.12"
57
+ python-version: "3.13"
58
58
  - os: windows-latest
59
- python-version: "3.12"
59
+ python-version: "3.13"
60
60
 
61
61
  steps:
62
62
  - uses: actions/checkout@v4
@@ -22,7 +22,7 @@ jobs:
22
22
  - name: Setup Python
23
23
  uses: actions/setup-python@v4
24
24
  with:
25
- python-version: '3.12'
25
+ python-version: '3.13'
26
26
 
27
27
  - name: Install cellfinder via pip
28
28
  run: python -m pip install -e "."
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: cellfinder
3
- Version: 1.4.1
3
+ Version: 1.5.1
4
4
  Summary: Automated 3D cell detection in large microscopy images
5
5
  Author-email: "Adam Tyson, Christian Niedworok, Charly Rousseau" <code@adamltyson.com>
6
6
  License: BSD-3-Clause
@@ -16,11 +16,11 @@ Classifier: Intended Audience :: Science/Research
16
16
  Classifier: Operating System :: OS Independent
17
17
  Classifier: Programming Language :: Python
18
18
  Classifier: Programming Language :: Python :: 3
19
- Classifier: Programming Language :: Python :: 3.10
20
19
  Classifier: Programming Language :: Python :: 3.11
21
20
  Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
22
  Classifier: Topic :: Scientific/Engineering :: Image Recognition
23
- Requires-Python: >=3.10
23
+ Requires-Python: >=3.11
24
24
  Description-Content-Type: text/markdown
25
25
  License-File: LICENSE
26
26
  Requires-Dist: brainglobe-utils>=0.5.0
@@ -36,6 +36,7 @@ Requires-Dist: keras>=3.7.0
36
36
  Requires-Dist: torch!=2.4,>=2.1.0
37
37
  Requires-Dist: tifffile
38
38
  Requires-Dist: tqdm
39
+ Requires-Dist: qt-niu
39
40
  Provides-Extra: dev
40
41
  Requires-Dist: black; extra == "dev"
41
42
  Requires-Dist: pre-commit; extra == "dev"
@@ -8,11 +8,11 @@ from brainglobe_napari_io.cellfinder.utils import convert_layer_to_cells
8
8
  from brainglobe_utils.cells.cells import Cell
9
9
  from brainglobe_utils.general.system import delete_directory_contents
10
10
  from brainglobe_utils.IO.yaml import save_yaml
11
- from brainglobe_utils.qtpy.dialog import display_warning
12
- from brainglobe_utils.qtpy.interaction import add_button, add_combobox
13
11
  from magicgui.widgets import ProgressBar
14
12
  from napari.qt.threading import thread_worker
15
13
  from napari.utils.notifications import show_info
14
+ from qt_niu.dialog import display_warning
15
+ from qt_niu.interaction import add_button, add_combobox
16
16
  from qtpy import QtCore
17
17
  from qtpy.QtWidgets import (
18
18
  QComboBox,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: cellfinder
3
- Version: 1.4.1
3
+ Version: 1.5.1
4
4
  Summary: Automated 3D cell detection in large microscopy images
5
5
  Author-email: "Adam Tyson, Christian Niedworok, Charly Rousseau" <code@adamltyson.com>
6
6
  License: BSD-3-Clause
@@ -16,11 +16,11 @@ Classifier: Intended Audience :: Science/Research
16
16
  Classifier: Operating System :: OS Independent
17
17
  Classifier: Programming Language :: Python
18
18
  Classifier: Programming Language :: Python :: 3
19
- Classifier: Programming Language :: Python :: 3.10
20
19
  Classifier: Programming Language :: Python :: 3.11
21
20
  Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
22
  Classifier: Topic :: Scientific/Engineering :: Image Recognition
23
- Requires-Python: >=3.10
23
+ Requires-Python: >=3.11
24
24
  Description-Content-Type: text/markdown
25
25
  License-File: LICENSE
26
26
  Requires-Dist: brainglobe-utils>=0.5.0
@@ -36,6 +36,7 @@ Requires-Dist: keras>=3.7.0
36
36
  Requires-Dist: torch!=2.4,>=2.1.0
37
37
  Requires-Dist: tifffile
38
38
  Requires-Dist: tqdm
39
+ Requires-Dist: qt-niu
39
40
  Provides-Extra: dev
40
41
  Requires-Dist: black; extra == "dev"
41
42
  Requires-Dist: pre-commit; extra == "dev"
@@ -11,6 +11,7 @@ keras>=3.7.0
11
11
  torch!=2.4,>=2.1.0
12
12
  tifffile
13
13
  tqdm
14
+ qt-niu
14
15
 
15
16
  [dev]
16
17
  black
@@ -14,12 +14,12 @@ classifiers = [
14
14
  "Operating System :: OS Independent",
15
15
  "Programming Language :: Python",
16
16
  "Programming Language :: Python :: 3",
17
- "Programming Language :: Python :: 3.10",
18
17
  "Programming Language :: Python :: 3.11",
19
18
  "Programming Language :: Python :: 3.12",
19
+ "Programming Language :: Python :: 3.13",
20
20
  "Topic :: Scientific/Engineering :: Image Recognition",
21
21
  ]
22
- requires-python = ">=3.10"
22
+ requires-python = ">=3.11"
23
23
  dependencies = [
24
24
  "brainglobe-utils>=0.5.0",
25
25
  "brainglobe-napari-io>=0.3.4",
@@ -34,6 +34,7 @@ dependencies = [
34
34
  "torch>=2.1.0,!=2.4",
35
35
  "tifffile",
36
36
  "tqdm",
37
+ "qt-niu"
37
38
  ]
38
39
  dynamic = ["version"]
39
40
 
@@ -80,7 +81,7 @@ requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
80
81
  build-backend = 'setuptools.build_meta'
81
82
 
82
83
  [tool.black]
83
- target-version = ['py310','py311', 'py312']
84
+ target-version = ['py311','py312', 'py313']
84
85
  skip-string-normalization = false
85
86
  line-length = 79
86
87
 
@@ -112,14 +113,14 @@ markers = ["slow: marks tests as slow (deselect with '-m \"not slow\"')"]
112
113
  legacy_tox_ini = """
113
114
  # For more information about tox, see https://tox.readthedocs.io/en/latest/
114
115
  [tox]
115
- envlist = py{310,311,312}
116
+ envlist = py{311,312,313}
116
117
  isolated_build = true
117
118
 
118
119
  [gh-actions]
119
120
  python =
120
- 3.10: py310
121
121
  3.11: py311
122
122
  3.12: py312
123
+ 3.13: py313
123
124
 
124
125
  [testenv]
125
126
  commands = python -m pytest -v --color=yes --cov=cellfinder --cov-report=xml
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes