Skip to content

Commit a88b992

Browse files
author
Stefan Klug
committed
Update to pylon 7.3
1 parent d272c4f commit a88b992

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

.appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ install:
3535
- 7z x swigwin.zip -oC:\ > NUL
3636
- set PATH=C:\swigwin-4.1.1;%PATH%
3737
# install pylon
38-
- appveyor-retry curl -sSfL -o pylon_installer.exe %PYLON_DOWNLOAD_URL_BASE%Basler_pylon_7.2.1.25747.exe
38+
- appveyor-retry curl -sSfL -o pylon_installer.exe %PYLON_DOWNLOAD_URL_BASE%Basler_pylon_7.3.0.27189.exe
3939
- pylon_installer.exe /quiet /install="Runtime;GigE_Support;USB_Support;Camera_Link_Support;CoaXPress_Support;GenTL_Consumer_Support;CamEmu_Support;SDKs"
4040
# PYLON_DEV_DIR is not available in the shell after installation, so we set it manually
4141
- set PYLON_DEV_DIR=%PROGRAMFILES%\Basler\pylon 7\Development

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
- name: Installer list
3232
run: |
3333
tee pylon-installer.txt <<"EOF"
34-
${PYLON_DOWNLOAD_URL_BASE_7_2}pylon_7.2.1.25747_x86_64_setup.tar.gz
35-
${PYLON_DOWNLOAD_URL_BASE_7_2}pylon_7.2.1.25747_aarch64_setup.tar.gz
34+
${PYLON_DOWNLOAD_URL_BASE_7_2}pylon_7.3.0.27189_linux-x86_64_setup.tar.gz
35+
${PYLON_DOWNLOAD_URL_BASE_7_2}pylon_7.3.0.27189_linux-aarch64_setup.tar.gz
3636
${PYLON_DOWNLOAD_URL_BASE}pylon_6.2.0.21487_armhf_setup.tar.gz
3737
${PYLON_DOWNLOAD_URL_BASE}pylon-6.1.2.19990.zip
3838
EOF

VersionInfo.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# The pylon version this source tree was designed for, by platform
22
ReferencePylonVersion = {
3-
"Windows": "7.2.1",
3+
"Windows": "7.3.0",
44
# ATTENTION: This version is the pylon core version reported by pylon-config,
55
# which is not equal to the version on the outer tar.gz
6-
"Linux": "7.2.1",
6+
"Linux": "7.3.0",
77
"Linux_armv7l": "6.2.0",
88
"Darwin": "6.1.2"
99
}

changelog.txt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 2.1.0a1
2+
- Date 2023-05-24
3+
- Updated to pylon 7.3 on linux and windows
4+
15
Version 2.0.0
26
- Date 2023-05-24
37
- Updated to pylon 7.2 on linux and windows

scripts/build/build-arch.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ if [ -z "$PYLON_DIR" ]; then
105105
exit 1
106106
fi
107107

108-
#test for pylon 6.1
109-
files=( $PYLON_DIR/pylon_*_${PYLON_ARCH}_setup.tar.gz )
108+
#test for pylon 6.1 and pylon 7
109+
files=( $PYLON_DIR/pylon_*_*${PYLON_ARCH}_setup.tar.gz )
110110
PYLON="${files[0]}"
111111

112112
#fallback to pre 6.1 naming

0 commit comments

Comments
 (0)