Skip to content

Commit bc3d8fd

Browse files
Merged PR 22084: Prepare pypylon 3.0.0 release
- Date 2023-11-09 - Updated to pylon 7.4 on linux and windows - Add support for pylon Data Processing and vTools - Linux (64bit) binaries are now manylinux_2_31 compliant and therefore require glibc >= 2.31 - Deprecate the direct feature assignment style, e.g cam.Gain = 42 in favor of e.g. cam.Gain.Value = 42 to allow typing support - Adjust all code examples and tests to use property access for features e.g. cam.Gain.Value, cam.Gain.Min, cam.Gain.Max ... - Update reference version of macOS intel builds - Moved windows builds to GitHub actions - Update README.md
2 parents 70a7a5c + e91ddd1 commit bc3d8fd

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ This project is offered with no technical support by Basler AG.
99
You are welcome to post any questions or issues on [GitHub](https://github.com/basler/pypylon) or on [ImagingHub](https://www.imaginghub.com).
1010

1111
[![Build Status](https://github.com/basler/pypylon/workflows/build/badge.svg?branch=master)](https://github.com/basler/pypylon/actions)
12-
[![Build Status](https://ci.appveyor.com/api/projects/status/45j4tydwdr0fv05p/branch/master?svg=true)](https://ci.appveyor.com/project/basler-oss/pypylon/branch/master)
1312

1413
# Getting Started
1514

@@ -52,7 +51,7 @@ camera.Close()
5251
* pypylon additionally supports the pylon Data Processing API extension.
5352
* The [pylon Workbench](https://docs.baslerweb.com/overview-of-the-workbench) allows you to create image processing designs using a graphical editor.
5453
* Hint: The [pylondataprocessing_tests](https://github.com/basler/pypylon/blob/master/tests/pylondataprocessing_tests) can optionally be used as a source of information about the syntax of the API.
55-
* Look at [samples/grab.py](https://github.com/basler/pypylon/blob/master/samples/dataprocessing_barcode.py) or use the following snippet:
54+
* Look at [samples/dataprocessing_barcode.py](https://github.com/basler/pypylon/blob/master/samples/dataprocessing_barcode.py) or use the following snippet:
5655

5756
```python
5857
from pypylon import pylondataprocessing

changelog.txt

+4-10
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
1-
Version 3.0.0rc3
1+
Version 3.0.0
22
- Date 2023-11-09
3-
- Moved windows builds to GitHub actions
4-
- Update README.md
5-
6-
Version 3.0.0rc2
7-
- Date 2023-11-07
8-
- Fix reference version of macos intel builds
9-
10-
Version 3.0.0rc1
11-
- Date 2023-11-07
123
- Updated to pylon 7.4 on linux and windows
134
- Add support for pylon Data Processing and vTools
145
- Linux (64bit) binaries are now manylinux_2_31 compliant and therefore
@@ -17,6 +8,9 @@ Version 3.0.0rc1
178
in favor of e.g. cam.Gain.Value = 42 to allow typing support
189
- Adjust all code examples and tests to use property access for
1910
features e.g. cam.Gain.Value, cam.Gain.Min, cam.Gain.Max ...
11+
- Update reference version of macOS intel builds
12+
- Moved windows builds to GitHub actions
13+
- Update README.md
2014

2115
Version 2.3.0
2216
- Date 2023-09-01

0 commit comments

Comments
 (0)