File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 2
2
Change Log
3
3
===================================
4
4
5
+ v0.0.9
6
+ ===================================
7
+
8
+ Features:
9
+
10
+ * Support parsing ``tensors `` and ``text `` without the ``tensorflow `` package
11
+ * Support NumPy 2.0
12
+ * Explicitly support Python 3.12 on PyPI
13
+
14
+ Breaking Changes:
15
+
16
+ * Drops support for Python 3.7
17
+
5
18
v0.0.8
6
19
===================================
7
20
Original file line number Diff line number Diff line change 7
7
8
8
setuptools .setup (
9
9
name = "tbparse" ,
10
- version = "0.0.8 " ,
10
+ version = "0.0.9 " ,
11
11
author = "Johnson" ,
12
12
13
13
description = "Load tensorboard event logs as pandas DataFrames; " + \
Original file line number Diff line number Diff line change 1
1
"""Contains the version string."""
2
2
3
- VERSION = "0.0.8 "
3
+ VERSION = "0.0.9 "
4
4
5
5
if __name__ == "__main__" :
6
6
print (VERSION )
You can’t perform that action at this time.
0 commit comments