Skip to content

Commit 06b8f29

Browse files
authored
Merge pull request #1 from scipp/inital-fixes
Inital fixes
2 parents a2633c1 + 60bef85 commit 06b8f29

26 files changed

+279
-60
lines changed

.copier-answers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
22
_commit: 47497b5
33
_src_path: gh:scipp/copier_template
4-
description: Matplotlib replacement for Jupyter that uses WebGL via Pythreejs
4+
description: Matplotlib clone for Jupyter that uses WebGL via Pythreejs
55
max_python: '3.13'
66
min_python: '3.11'
77
namespace_package: ''

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
## About
99

10-
Matplotlib replacement for Jupyter that uses WebGL via Pythreejs
10+
Matplotlib clone for Jupyter that uses WebGL via Pythreejs
1111

1212
## Installation
1313

docs/_static/favicon.ico

135 KB
Binary file not shown.

docs/_static/logo-dark.svg

Lines changed: 70 additions & 0 deletions
Loading

docs/_static/logo.svg

Lines changed: 70 additions & 0 deletions
Loading

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# {transparent}`Matplotgl`
2525

2626
<div style="font-size:1.2em;font-style:italic;color:var(--pst-color-text-muted);text-align:center;">
27-
Matplotlib replacement for Jupyter that uses WebGL via Pythreejs
27+
Matplotlib clone for Jupyter that uses WebGL via Pythreejs
2828
</br></br>
2929
</div>
3030

docs/user-guide/imshow.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "markdown",
5-
"id": "394c0bcc-4177-4083-abbb-9f829ab60a01",
5+
"id": "0",
66
"metadata": {},
77
"source": [
88
"# Imshow"
@@ -11,7 +11,7 @@
1111
{
1212
"cell_type": "code",
1313
"execution_count": null,
14-
"id": "7b97da73-c403-48e6-a9a4-d86b8452eca2",
14+
"id": "1",
1515
"metadata": {},
1616
"outputs": [],
1717
"source": [
@@ -22,7 +22,7 @@
2222
{
2323
"cell_type": "code",
2424
"execution_count": null,
25-
"id": "650ad4ba-b117-4295-a4d0-55a3df249b1c",
25+
"id": "2",
2626
"metadata": {},
2727
"outputs": [],
2828
"source": [

docs/user-guide/plot.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "markdown",
5-
"id": "d228c316-3700-44b4-b457-218454da891d",
5+
"id": "0",
66
"metadata": {},
77
"source": [
88
"# Plot"
@@ -11,7 +11,7 @@
1111
{
1212
"cell_type": "code",
1313
"execution_count": null,
14-
"id": "710d60a6-0166-44b5-8460-0e46eff525fa",
14+
"id": "1",
1515
"metadata": {},
1616
"outputs": [],
1717
"source": [
@@ -22,7 +22,7 @@
2222
{
2323
"cell_type": "code",
2424
"execution_count": null,
25-
"id": "0bcb7406-4eb8-45af-971e-36c7af397de4",
25+
"id": "2",
2626
"metadata": {},
2727
"outputs": [],
2828
"source": [
@@ -42,7 +42,7 @@
4242
{
4343
"cell_type": "code",
4444
"execution_count": null,
45-
"id": "5c0de3de-4ce7-4882-9c0d-db6cb189bce0",
45+
"id": "3",
4646
"metadata": {},
4747
"outputs": [],
4848
"source": [

docs/user-guide/scatter.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "markdown",
5-
"id": "935f17d3-eae3-41e5-8258-8165cda406bb",
5+
"id": "0",
66
"metadata": {},
77
"source": [
88
"# Scatter"
@@ -11,7 +11,7 @@
1111
{
1212
"cell_type": "code",
1313
"execution_count": null,
14-
"id": "9f36776c-0c6b-4d3b-8d76-86961aa11d16",
14+
"id": "1",
1515
"metadata": {},
1616
"outputs": [],
1717
"source": [
@@ -22,7 +22,7 @@
2222
{
2323
"cell_type": "code",
2424
"execution_count": null,
25-
"id": "05d54f24-7298-4ec3-befd-85ebaff9d1a6",
25+
"id": "2",
2626
"metadata": {},
2727
"outputs": [],
2828
"source": [

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77

88
[project]
99
name = "matplotgl"
10-
description = "Matplotlib replacement for Jupyter that uses WebGL via Pythreejs"
10+
description = "Matplotlib clone for Jupyter that uses WebGL via Pythreejs"
1111
authors = [{ name = "Scipp contributors" }]
1212
license = "BSD-3-Clause"
1313
license-files = ["LICENSE"]
@@ -32,6 +32,7 @@ requires-python = ">=3.11"
3232
dependencies = [
3333
"matplotlib",
3434
"pythreejs",
35+
"anywidget",
3536
]
3637

3738
dynamic = ["version"]
@@ -60,7 +61,7 @@ addopts = """
6061
testpaths = "tests"
6162
filterwarnings = [
6263
"error",
63-
]
64+
'ignore:\n Sentinel is not a public part of the traitlets API:DeprecationWarning',]
6465

6566
[tool.ruff]
6667
line-length = 88

0 commit comments

Comments
 (0)