Skip to content

Commit 192783e

Browse files
committed
Merge branch 'main' into yogesh-xxx-fix-vega-warnings
2 parents 82c92eb + 0fe83e9 commit 192783e

File tree

5 files changed

+5
-20
lines changed

5 files changed

+5
-20
lines changed

CHANGES.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

chartlets.js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
"plotting",
1717
"charting"
1818
],
19+
"homepage": "https://bcdev.github.io/chartlets",
1920
"repository": {
2021
"type": "git",
2122
"url": "https://github.com/bcdev/chartlets.git"
2223
},
2324
"bugs": {
2425
"url": "https://github.com/bcdev/chartlets/issues"
2526
},
26-
"homepage": "https://github.com/bcdev/charlet/blob/main/chartlets/README.md",
2727
"author": "Brockmann Consult GmbH",
2828
"license": "MIT",
2929
"types": "./dist/index.d.ts",

chartlets.py/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ demo = [
6969
]
7070

7171
[project.urls]
72-
Repository = "https://github.com/bcdev/chartlets"
7372
Documentation = "https://bcdev.github.io/chartlets"
73+
Repository = "https://github.com/bcdev/chartlets"
74+
Changelog = "https://github.com/bcdev/chartlets/blob/main/chartlets.py/CHANGES.md"
7475
# Not yet:
7576
#Issues = "https://github.com/bcdev/chartlets/issues"
76-
#Changelog = "https://github.com/bcdev/chartlets/blob/main/CHANGES.md"

chartlets.py/tests/components/box_test.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ def test_is_json_serializable(self):
1616

1717
d = box.to_dict()
1818
self.assertIsInstance(d, dict)
19-
self.assertIsInstance(d.get("components"), list)
20-
self.assertNotIn("children", d)
19+
self.assertIsInstance(d.get("children"), list)
2120
json_text = json.dumps(d)
2221
self.assertEqual("{", json_text[0])
2322
self.assertEqual("}", json_text[-1])

chartlets.py/tests/container_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def test_to_dict(self):
3535
"type": "ItemGroup",
3636
"id": "ig13",
3737
"style": {"color": "red"},
38-
"components": [
38+
"children": [
3939
{"type": "Item", "id": "i1"},
4040
{"type": "Item", "id": "i2"},
4141
],

0 commit comments

Comments
 (0)