Skip to content

Add support for Python 3.11 #209

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 25, 2023
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
2 changes: 1 addition & 1 deletion .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
27 changes: 1 addition & 26 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{38,39,310}
envlist = py{38,39,310,311}
isolated_build = true

[gh-actions]
Expand Down