From dd74f278bd64d2aaa8778b00fecb0784bb06a5f1 Mon Sep 17 00:00:00 2001 From: David Stansby Date: Fri, 25 Aug 2023 17:15:53 +0100 Subject: [PATCH 1/4] Add testing on Python 3.11 --- .github/workflows/test_and_deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index df170bdf..6e170d14 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -20,7 +20,7 @@ jobs: fail-fast: false matrix: platform: [ubuntu-latest, macos-latest, windows-latest] - python-version: ['3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v3 From 70b77dec3d1a330af0f551355370debd288c3cf5 Mon Sep 17 00:00:00 2001 From: David Stansby Date: Fri, 25 Aug 2023 17:16:35 +0100 Subject: [PATCH 2/4] Add tox environment --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 298887e1..683992f5 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{38,39,310} +envlist = py{38,39,310,311} isolated_build = true [gh-actions] From cf7466971bc38d3998c1a3b9584fb49a06fd9747 Mon Sep 17 00:00:00 2001 From: David Stansby Date: Fri, 25 Aug 2023 17:17:29 +0100 Subject: [PATCH 3/4] Update development status --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index e1fc9e73..b05201cb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,7 +9,7 @@ author_email = d.stansby@ucl.ac.uk license = BSD-3-Clause license_files = LICENSE classifiers = - Development Status :: 3 - Alpha + Development Status :: 5 - Production/Stable Framework :: napari Intended Audience :: Developers License :: OSI Approved :: BSD License From 719e60856d1d2377d3b1447a906aa0378bfe0ed2 Mon Sep 17 00:00:00 2001 From: David Stansby Date: Fri, 25 Aug 2023 17:19:01 +0100 Subject: [PATCH 4/4] Add link to docs in README --- README.md | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/README.md b/README.md index 855c4991..e4551d23 100644 --- a/README.md +++ b/README.md @@ -15,32 +15,7 @@ A plugin to create Matplotlib plots from napari layers ## Introduction `napari-matplotlib` is a bridge between `napari` and `matplotlib`, making it easy to create publication quality `Matplotlib` plots based on the data loaded in `napari` layers. -## Available widgets - -### `Slice` -Plots 1D slices of data along a specified axis. -![](https://raw.githubusercontent.com/matplotlib/napari-matplotlib/main/examples/slice.png) - -### `Histogram` -Plots histograms of individual image layers, or RGB histograms of an RGB image -![](https://raw.githubusercontent.com/matplotlib/napari-matplotlib/main/examples/hist.png) - -### `Scatter` -Scatters the values of two similarly sized images layers against each other. -![](https://raw.githubusercontent.com/matplotlib/napari-matplotlib/main/examples/scatter.png) - -## Installation - -You can install `napari-matplotlib` via [pip]: - - pip install napari-matplotlib - - - -To install latest development version : - - pip install git+https://github.com/matplotlib/napari-matplotlib.git - +Documentaiton can be found at https://napari-matplotlib.github.io/ ## Contributing