Releases: basler/pypylon
Releases · basler/pypylon
1.4.0rc1
pypylon release 1.4.0rc1 Changes: - Fixed a regression introduced in version 1.1.0 where pypylon stopped being importable when used in an application built with PyInstaller. - Fixed PylonImageBase so that the methods CanSaveWithoutConversion, Save and Load can be used. Added a sample that shows how images can be saved. - Added macOS platform support - Switched to Pylon 5.2.0 for windows and linux builds
1.3.1
pypylon release 1.3.1 Changes: - Bump version number to fix pypi deployment
1.3.0
pypylon release 1.3.0 Changes: - The pylon version is no longer contained in the local version tag of pypylon when building with the reference pylon version (currently 5.0.12) - Better package metadata - Windows wheels are pushed to pypi - Linux release builds for python 2.7
1.2.0
pypylon release 1.2.0 Changes: - Remove the pylon build number from the python package name - Fixed a bug in GrabResult.GetArrayZeroCopy (accessing a non-existent# 1.2.0 attribute). Added a zero-copy sample. - fix image format converter - enable enum_props in Pylon - fix SWIG include path in --pp-debug case - Fixed TlFactory.EnumerateDevices so that arbitrary objects are no longer accepted as boolean arguments - they have to be 'real' bool() objects. This was done to easily spot this unwitting omission: # programmer wrote: found1 = pylon.TlFactory.GetInstance().EnumerateDevices(single_di) # but meant to say: found2 = pylon.TlFactory.GetInstance().EnumerateDevices([single_di]) - Pylon 5.0.11 and 5.0.12 require that the workaround for DLL loading on windows is reactivated (had been removed in 1.0.7). - Search for swig in PATH on windows - Ensure swig version is >= 3.0.12