8000 Use _Backend from matplotlib to simplify the code by ianhi · Pull Request #305 · matplotlib/ipympl · GitHub
[go: up one dir, main page]

Skip to content

Use _Backend from matplotlib to simplify the code #305

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
Mar 18, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
move pytest settings into pyproject.toml
  • Loading branch information
ianhi committed Mar 4, 2021
commit 033d3e3c418f49530710893ac09fabe6d4ae77e7
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@ js/*.tgz

# OS X
.DS_Store

# vscode
.vscode/
12 changes: 12 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
[build-system]
requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0,==3.*", "setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"


[tool.pytest.ini_options]
testpaths = [
"test-notebooks",
"examples",
]
norecursedirs = [
"node_modules",
".ipynb_checkpoints",
]
addopts = "--nbval --current-env"
4 changes: 0 additions & 4 deletions pytest.ini

This file was deleted.

0