Skip to content

Commit 3e8a85e

Browse files
committed
v1.2.0: see Release_Notes
1 parent 353d67c commit 3e8a85e

File tree

7 files changed

+37
-10
lines changed

7 files changed

+37
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ NOTE: Be sure to satisfy the requirements before installing the package ([see Re
3131

3232
On Windows:
3333
```sh
34-
python -m pip install dist\stdatalog_dtk-1.1.0-py3-none-any.whl
34+
python -m pip install dist\stdatalog_dtk-1.2.0-py3-none-any.whl
3535
```
3636

3737
On Linux/macOS:
3838
```sh
39-
python3 -m pip install dist/stdatalog_dtk-1.1.0-py3-none-any.whl
39+
python3 -m pip install dist/stdatalog_dtk-1.2.0-py3-none-any.whl
4040
```
4141

4242
The package could also be installed as part of the **[STDATALOG-PYSDK](https://github.com/STMicroelectronics/stdatalog-pysdk)** by launching the SDK installation script from the SDK root folder:

Release_Notes.html

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,21 @@ <h1 id="purpose">Purpose</h1>
3535
<div class="col-sm-12 col-lg-8">
3636
<h1 id="update-history">Update History</h1>
3737
<div class="collapse">
38-
<input type="checkbox" id="collapse-section2" checked aria-hidden="true"> <label for="collapse-section2" aria-hidden="true">v1.1.0 / 9-Apr-25</label>
38+
<input type="checkbox" id="collapse-section3" checked aria-hidden="true"> <label for="collapse-section3" aria-hidden="true">v1.2.0 / 20-Jun-25</label>
3939
<div>
4040
<h2 id="main-changes">Main Changes</h2>
4141
<h3 id="maintenance-release">Maintenance Release</h3>
4242
<ul>
43+
<li>Added support to Python 3.13</li>
44+
</ul>
45+
</div>
46+
</div>
47+
<div class="collapse">
48+
<input type="checkbox" id="collapse-section2" aria-hidden="true"> <label for="collapse-section2" aria-hidden="true">v1.1.0 / 9-Apr-25</label>
49+
<div>
50+
<h2 id="main-changes-1">Main Changes</h2>
51+
<h3 id="maintenance-release-1">Maintenance Release</h3>
52+
<ul>
4353
<li><strong>Added macos support.</strong></li>
4454
<li>Use the latest PySide6 version compatible w.r.t. architecture (Windows, Linux, macOS; 32bit, 64bit)</li>
4555
</ul>
@@ -48,7 +58,7 @@ <h3 id="maintenance-release">Maintenance Release</h3>
4858
<div class="collapse">
4959
<input type="checkbox" id="collapse-section1" aria-hidden="true"> <label for="collapse-section1" aria-hidden="true">v1.0.0 / 17-Jan-25</label>
5060
<div>
51-
<h2 id="main-changes-1">Main Changes</h2>
61+
<h2 id="main-changes-2">Main Changes</h2>
5262
<h3 id="first-official-release">First official release</h3>
5363
</div>
5464
</div>

Release_Notes.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,22 @@ The package is part of the **[STDATALOG-PYSDK](https://github.com/STMicroelectro
3838
# Update History
3939

4040
::: {.collapse}
41-
<input type="checkbox" id="collapse-section2" checked aria-hidden="true">
41+
<input type="checkbox" id="collapse-section3" checked aria-hidden="true">
42+
<label for="collapse-section3" aria-hidden="true">v1.2.0 / 20-Jun-25</label>
43+
<div>
44+
45+
46+
## Main Changes
47+
48+
### Maintenance Release
49+
50+
- Added support to Python 3.13
51+
52+
</div>
53+
:::
54+
55+
::: {.collapse}
56+
<input type="checkbox" id="collapse-section2" aria-hidden="true">
4257
<label for="collapse-section2" aria-hidden="true">v1.1.0 / 9-Apr-25</label>
4358
<div>
4459

6.05 KB
Binary file not shown.

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
setuptools.setup(
2323
name="stdatalog_dtk",
24-
version="1.1.0",
24+
version="1.2.0",
2525
author="SRA-ASP",
2626
author_email="[email protected]",
2727
description="STMicroelectronics DataToolkit python package",
@@ -40,10 +40,11 @@
4040
"Programming Language :: Python :: 3.10",
4141
"Programming Language :: Python :: 3.11",
4242
"Programming Language :: Python :: 3.12",
43+
"Programming Language :: Python :: 3.13",
4344
"Topic :: Software Development :: Embedded Systems"
4445
],
4546
install_requires=[
46-
"stdatalog_core==1.1.0",
47+
"stdatalog_core==1.2.0",
4748
"PySide6==6.9.0; platform_system == 'Windows'",
4849
"PySide6==6.9.0; platform_system == 'Linux' and platform_machine != 'aarch64'",
4950
"PySide6==6.8.0.2; platform_system == 'Linux' and platform_machine == 'aarch64'",

stdatalog_dtk.egg-info/PKG-INFO

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: stdatalog_dtk
3-
Version: 1.1.0
3+
Version: 1.2.0
44
Summary: STMicroelectronics DataToolkit python package
55
Home-page: https://github.com/STMicroelectronics/stdatalog_dtk
66
Author: SRA-ASP
@@ -13,10 +13,11 @@ Classifier: Programming Language :: Python :: 3
1313
Classifier: Programming Language :: Python :: 3.10
1414
Classifier: Programming Language :: Python :: 3.11
1515
Classifier: Programming Language :: Python :: 3.12
16+
Classifier: Programming Language :: Python :: 3.13
1617
Classifier: Topic :: Software Development :: Embedded Systems
1718
Description-Content-Type: text\markdown
1819
License-File: LICENSE.md
19-
Requires-Dist: stdatalog_core==1.1.0
20+
Requires-Dist: stdatalog_core==1.2.0
2021
Requires-Dist: PySide6==6.9.0; platform_system == "Windows"
2122
Requires-Dist: PySide6==6.9.0; platform_system == "Linux" and platform_machine != "aarch64"
2223
Requires-Dist: PySide6==6.8.0.2; platform_system == "Linux" and platform_machine == "aarch64"

stdatalog_dtk.egg-info/requires.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
stdatalog_core==1.1.0
1+
stdatalog_core==1.2.0
22

33
[:platform_system == "Darwin" and platform_machine == "arm64"]
44
PySide6==6.9.0

0 commit comments

Comments
 (0)