Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-linux-28.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
mv inih-r58 inih

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.5
uses: pypa/cibuildwheel@v2.22.0
env:
CIBW_ARCHS: auto64
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-macos-28.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
mv exiv2-0.28.3 libexiv2

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.5
uses: pypa/cibuildwheel@v2.22.0
env:
CIBW_ARCHS: x86_64
CIBW_ENVIRONMENT: >
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-macos-arm-28.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
mv exiv2-0.28.3 libexiv2

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.5
uses: pypa/cibuildwheel@v2.22.0
env:
CIBW_ARCHS: arm64
CIBW_ENVIRONMENT: >
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-windows-28.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
copy build-msvc\bin\libcurl.dll build-msvc\install\bin

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.5
uses: pypa/cibuildwheel@v2.22.0
env:
CIBW_ARCHS: auto64
CIBW_SKIP: pp3*
Expand Down
2 changes: 1 addition & 1 deletion src/interface/properties.i
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ DEFINE_ENUM(XmpCategory, "Category of an XMP property.",
PyDict_SetItemString(dict, i->first.c_str(), value);
Py_DECREF(value);
}
$result = SWIG_Python_AppendOutput($result, dict);
$result = SWIG_AppendOutput($result, dict);
}

// Convert XmpProperties.propertyList() result and XmpNsInfo.xmpPropertyInfo_
Expand Down
2 changes: 1 addition & 1 deletion src/interface/shared/static_list.i
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ static PyObject* pointer_to_list(item_type* ptr) {
PyObject* list = pointer_to_list($1);
if (!list)
SWIG_fail;
$result = SWIG_Python_AppendOutput($result, list);
$result = SWIG_AppendOutput($result, list);
}
%enddef // LIST_POINTER
2 changes: 1 addition & 1 deletion src/swig-0_27_7/basicio.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This file was automatically generated by SWIG (https://www.swig.org).
# Version 4.2.1
# Version 4.3.0
#
# Do not make changes to this file unless you know what you are doing - modify
# the SWIG interface file instead.
Expand Down
Loading
Loading