diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 892d0dc..7ebe2bc 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: platform: [ubuntu-latest, macos-latest] - python-version: [3.8, 3.9] + python-version: [3.9, '3.10', 3.11] steps: - uses: actions/checkout@v2 diff --git a/requirements.txt b/requirements.txt index f0449f0..ee7acee 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ napari-plugin-engine>=0.1.4 -npe2 to <0.7.0 # https://github.com/haesleinhuepf/devbio-napari/issues/41 +npe2 numpy>=1.21.4 napari-pyclesperanto-assistant napari-skimage-regionprops @@ -35,5 +35,5 @@ pydantic!=1.10.0 # https://twitter.com/Czaki_PL/status/1564908046186434566?s=20& napari-pystackreg imageio!=2.22.1 # https://github.com/napari/napari/pull/5168 redlionfish -jupyter_server<2.0.0 # https://github.com/jupyter-server/jupyter_server/issues/1127 +jupyter_server seaborn diff --git a/setup.cfg b/setup.cfg index 87d6b63..3252853 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = devbio-napari -version = 0.10.1 +version = 0.11.0 author = Robert Haase author_email = robert.haase@tu-dresden.de license = BSD-3 @@ -14,8 +14,9 @@ classifiers = Framework :: napari Programming Language :: Python Programming Language :: Python :: 3 - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 + Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 Operating System :: OS Independent License :: OSI Approved :: BSD License project_urls = @@ -26,12 +27,12 @@ project_urls = [options] packages = find: -python_requires = >=3.8 +python_requires = >=3.9 # add your package requirements here install_requires = napari-plugin-engine>=0.1.4 - npe2<0.7.0 # https://github.com/haesleinhuepf/devbio-napari/issues/41 + npe2 numpy>=1.21.4 napari-pyclesperanto-assistant napari-skimage-regionprops @@ -64,7 +65,7 @@ install_requires = napari-pystackreg imageio!=2.22.1 # https://github.com/napari/napari/pull/5168 redlionfish - jupyter_server<2.0.0 # https://github.com/jupyter-server/jupyter_server/issues/1127 + jupyter_server seaborn diff --git a/tox.ini b/tox.ini index 8e8045c..e8d2b89 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,12 @@ # For more information about tox, see https://tox.readthedocs.io/en/latest/ [tox] -envlist = py{38,39}-{linux,macos,windows} +envlist = py{39,310,311}-{linux,macos,windows} [gh-actions] python = - 3.8: py38 3.9: py39 + 3.10: py310 + 3.11: py311 [gh-actions:env] PLATFORM =