Skip to content

Commit

Permalink
Merge pull request #53 from haesleinhuepf/remove-npe2-pin
Browse files Browse the repository at this point in the history
remove npe2-pin, make python 3.9 - 3.11 requirement
  • Loading branch information
haesleinhuepf authored Oct 18, 2024
2 parents 6b9356e + 6e80353 commit 6be92af
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
11 changes: 6 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 =
Expand All @@ -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
Expand Down Expand Up @@ -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


Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -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 =
Expand Down

0 comments on commit 6be92af

Please sign in to comment.