Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions deploy.bat

This file was deleted.

4 changes: 2 additions & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
jupyter-book>=0.7.0b
napari
pyqt5 # noqa
napari-stress
QtPy
napari-stress>=0.3.9
sphinx>=5.0.0
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,12 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Testing",
]
requires-python = ">=3.7"
requires-python = ">=3.9"
dependencies = [
"dask",
"distributed",
Expand Down Expand Up @@ -65,7 +64,7 @@ napari-stress = "napari_stress:napari.yaml"
"User Support" = "https://github.com/campaslab/napari-stress/issues"

[build-system]
requires = ["setuptools>=42.0.0", "wheel"]
requires = ["setuptools>=42.0.0", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
Expand All @@ -77,12 +76,13 @@ where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.yaml"]

[tool.setuptools.dynamic]
version = {attr = "napari_stress.__version__"}
[tool.setuptools_scm]
write_to = "src/napari_stress/_version.py"
fallback_version = "0.0.1+nogit"

[tool.black]
line-length = 79
target-version = ['py37', 'py38', 'py39', 'py310']
target-version = ['py39', 'py310', 'py311']

[tool.ruff]
line-length = 79
Expand Down Expand Up @@ -127,5 +127,5 @@ exclude = [
"*_vendor*",
]

target-version = "py37"
target-version = "py311"
fix = true
2 changes: 0 additions & 2 deletions src/napari_stress/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
__version__ = "0.3.9"

from . import _approximation as approximation
from . import _measurements as measurements
from . import _plotting as plotting
Expand Down
2 changes: 1 addition & 1 deletion src/napari_stress/_approximation/fit_ellipsoid.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
if TYPE_CHECKING:
import napari

from .. import __version__
from .._version import __version__
from .._utils.frame_by_frame import frame_by_frame


Expand Down