File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change
1
+ since version 1.7.2 release
2
+ ===========================
3
+ * fix type hint for createEnumType (issue #1378)
4
+ * add python 3.13 to windows wheel builds (PR #1377)
5
+
1
6
version 1.7.2 (tag v1.7.2rel)
2
7
=============================
3
8
* add static type hints (PRs #1302, #1349)
Original file line number Diff line number Diff line change @@ -354,7 +354,7 @@ class Dataset:
354
354
def createVLType (self , datatype : npt .DTypeLike , datatype_name : str ) -> VLType : ...
355
355
def createEnumType (
356
356
self ,
357
- datatype : np .dtype [np .integer ] | type [np .integer ] | type [int ],
357
+ datatype : np .dtype [np .integer ] | type [np .integer ] | type [int ] | str ,
358
358
datatype_name : str ,
359
359
enum_dict : Mapping [str , int | np .integer ],
360
360
) -> EnumType : ...
You can’t perform that action at this time.
0 commit comments