We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feeecb5 commit 83f8af8Copy full SHA for 83f8af8
2 files changed
python/CHANGELOG.rst
@@ -4,9 +4,12 @@
4
5
**Bugfixes**
6
7
-- Meatdata.schema was returning a modified schema, this is fixed to return a copy of
+- Metadata.schema was returning a modified schema, this is fixed to return a copy of
8
the original schema instead (:user:`benjeffery`, :issue:`3129`, :pr:`3130`)
9
10
+- ``TreeSequence.draw_svg(path=...)`` was failing due to a missing
11
+ `import xml.dom.minidom` (:user:`petrelharp`, :issue:`3144`, :pr:`3145`)
12
+
13
--------------------
14
[0.6.1] - 2025-03-31
15
python/tskit/drawing.py
@@ -30,7 +30,7 @@
30
import numbers
31
import operator
32
import warnings
33
-import xml
+import xml.dom.minidom
34
from dataclasses import dataclass
35
from typing import List
36
from typing import Mapping
0 commit comments