Skip to content

Add matplotlib.backend entry point #58

Add matplotlib.backend entry point

Add matplotlib.backend entry point #58

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
defaults:
run:
shell: bash -l {0}
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup conda
uses: conda-incubator/setup-miniconda@v2
with:
python-version: ${{ matrix.python-version }}
mamba-version: "*"
auto-activate-base: false
channels: conda-forge
- name: Install dependencies
run: mamba install ipython matplotlib flake8
- name: Install package
run: pip install .
- name: Test installation
run: python -c 'from matplotlib_inline.backend_inline import show'
- name: Test flake8
run: flake8 matplotlib_inline --ignore=E501,W504,W503