Skip to content

Commit 98e1df8

Browse files
authored
Merge pull request #209 from dstansby/py311
Add support for Python 3.11
2 parents dc1f3bb + 719e608 commit 98e1df8

File tree

4 files changed

+4
-29
lines changed

4 files changed

+4
-29
lines changed

.github/workflows/test_and_deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
platform: [ubuntu-latest, macos-latest, windows-latest]
23-
python-version: ['3.8', '3.9', '3.10']
23+
python-version: ['3.8', '3.9', '3.10', '3.11']
2424

2525
steps:
2626
- uses: actions/checkout@v3

README.md

+1-26
Original file line numberDiff line numberDiff line change
@@ -15,32 +15,7 @@ A plugin to create Matplotlib plots from napari layers
1515
## Introduction
1616
`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.
1717

18-
## Available widgets
19-
20-
### `Slice`
21-
Plots 1D slices of data along a specified axis.
22-
![](https://raw.githubusercontent.com/matplotlib/napari-matplotlib/main/examples/slice.png)
23-
24-
### `Histogram`
25-
Plots histograms of individual image layers, or RGB histograms of an RGB image
26-
![](https://raw.githubusercontent.com/matplotlib/napari-matplotlib/main/examples/hist.png)
27-
28-
### `Scatter`
29-
Scatters the values of two similarly sized images layers against each other.
30-
![](https://raw.githubusercontent.com/matplotlib/napari-matplotlib/main/examples/scatter.png)
31-
32-
## Installation
33-
34-
You can install `napari-matplotlib` via [pip]:
35-
36-
pip install napari-matplotlib
37-
38-
39-
40-
To install latest development version :
41-
42-
pip install git+https://github.com/matplotlib/napari-matplotlib.git
43-
18+
Documentaiton can be found at https://napari-matplotlib.github.io/
4419

4520
## Contributing
4621

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ author_email = [email protected]
99
license = BSD-3-Clause
1010
license_files = LICENSE
1111
classifiers =
12-
Development Status :: 3 - Alpha
12+
Development Status :: 5 - Production/Stable
1313
Framework :: napari
1414
Intended Audience :: Developers
1515
License :: OSI Approved :: BSD License

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{38,39,310}
2+
envlist = py{38,39,310,311}
33
isolated_build = true
44

55
[gh-actions]

0 commit comments

Comments
 (0)