Skip to content

Commit cc60e7e

Browse files
author
ingo_berg
committed
bugfix; cleanup
bugfix: get_die_size must return float not int
1 parent 6531308 commit cc60e7e

File tree

16 files changed

+126
-17
lines changed

16 files changed

+126
-17
lines changed
17.4 KB
Binary file not shown.
-16.3 KB
Binary file not shown.
-25.1 KB
Binary file not shown.
-16.1 KB
Binary file not shown.
-25.2 KB
Binary file not shown.
Binary file not shown.

sentio_prober_control.egg-info/PKG-INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: sentio-prober-control
3-
Version: 0.1.0
3+
Version: 1.0.0
44
Summary: MPI Sentio Prober Control - Python Bindings
55
Home-page: https://www.mpi-corporation.com/ast/engineering-probe-systems/mpi-sentio-software-suite/
66
Author: Ingo Berg
@@ -10,7 +10,7 @@ Description: # Sentio Prober Control - Python Bindings
1010
Python bindings for controlling MPI SENTIO probe stations
1111

1212
Platform: UNKNOWN
13-
Classifier: Development Status :: 3 - Alpha
13+
Classifier: Development Status :: 4 - Beta
1414
Classifier: Environment :: Console
1515
Classifier: Programming Language :: Python :: 3
1616
Classifier: License :: Other/Proprietary License

sentio_prober_control/Samples/chuck_poi_stepping.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def main():
112112
selected_poi = range(0, num_poi)
113113

114114
# Variant 2: Step over all POI
115-
selected_poi = [ 'poi_1', 'poi_5', 'poi_9']
115+
#selected_poi = [ 'poi_1', 'poi_5', 'poi_9']
116116

117117
# Do the poi stepping
118118
for i in selected_poi:

sentio_prober_control/Sentio/CommandGroups/WafermapCommandGroup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ def get_index_size(self) -> Tuple[int, int]:
5454
self._comm.send("map:get_index_size")
5555
resp = Response.check_resp(self._comm.read_line())
5656
tok = resp.message().split(",")
57-
58-
return int(tok[0]), int(tok[1])
57+
return float(tok[0]), float(tok[1])
5958

6059
def get_street_size(self) -> Tuple[int, int]:
6160
self._comm.send("map:get_street_size")

sentio_prober_control_SentioProberDev.egg-info/PKG-INFO

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
Metadata-Version: 2.1
22
Name: sentio-prober-control-SentioProberDev
3-
Version: 0.1.5
3+
Version: 1.0.0
44
Summary: MPI Sentio Prober Control - Python Bindings
55
Home-page: https://www.mpi-corporation.com/ast/engineering-probe-systems/mpi-sentio-software-suite/
66
Author: Ingo Berg
77
Author-email: ingo.berg@atv-systems.de
88
License: UNKNOWN
9-
Description: # SENTIO® Prober Control - Python Bindings
10-
This archive contains a package with python bindings to control a [MPI Sentio probe station](https://www.mpi-corporation.com/ast/engineering-probe-systems/mpi-sentio-software-suite/).
9+
Description: [![GitHub issues](https://img.shields.io/github/issues/SentioProberDev/SentioProberControl.svg?maxAge=360)](https://github.com/SentioProberDev/SentioProberControl/issues)
10+
[![Version](https://img.shields.io/github/release/SentioProberDev/SentioProberControl.svg?maxAge=360)](https://github.com/SentioProberDev/SentioProberControl/releases/)
11+
[![Github All Releases](https://img.shields.io/github/downloads/SentioProberDev/SentioProberControl/total.svg)](https://github.com/SentioProberDev/SentioProberControl/releases/)
12+
# SENTIO® Prober Control - Python Bindings
13+
This archive contains a package with python bindings to control a [MPI SENTIO® probe station](https://www.mpi-corporation.com/ast/engineering-probe-systems/mpi-sentio-software-suite/).
1114

1215
![](https://www.mpi-corporation.com/wp-content/uploads/2019/12/1.-TS3500-SE-with-WaferWallet_frontview.jpg)
1316

@@ -21,15 +24,17 @@ Description: # SENTIO® Prober Control - Python Bindings
2124

2225
```python -m pip install sentio_prober_control-0.1.5.tar.gz```
2326

27+
Please note that pip will automatically uninstall an older version of the sentio_prober_control repository, if one is found.
28+
2429
## Instructions for package maintainer (updating the package)
2530

26-
1.) Install python3
31+
*The following instructions are for creating a new release of the package. If you only want to use the package you do not need to do this! Just follow the instructions listed above for installing an existing package.*
2732

28-
2.) Get the latest version of setuptools and wheel:
33+
1.) Get the latest version of setuptools and wheel:
2934

3035
```python -m pip install --user --upgrade setuptools wheel```
3136

32-
3.) create the distribution archive:
37+
2.) create the distribution archive:
3338

3439
cd into the archive (where setup.py) is located.
3540

@@ -39,12 +44,14 @@ Description: # SENTIO® Prober Control - Python Bindings
3944

4045
```
4146
dist/
42-
sentio_prober_control-0.1.3-py3-none-any.whl
43-
sentio_prober_control-0.1.3.tar.gz
47+
sentio_prober_control-0.1.5-py3-none-any.whl
48+
sentio_prober_control-0.1.5.tar.gz
4449
```
4550

51+
3.) Create a new release on GitHub with the new binary archive
52+
4653
Platform: UNKNOWN
47-
Classifier: Development Status :: 3 - Alpha
54+
Classifier: Development Status :: 4 - Beta
4855
Classifier: Environment :: Console
4956
Classifier: Programming Language :: Python :: 3
5057
Classifier: License :: Other/Proprietary License

0 commit comments

Comments
 (0)