Skip to content

Commit

Permalink
[ci] update to v2.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoHsiao1 committed Oct 12, 2024
1 parent b0876e2 commit 44c2a30
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-14]
os: [macos-15]
python_version: [3.8, 3.9, '3.10', '3.11', '3.12']
exiv2_version: [0.28.3]
runs-on: ${{matrix.os}}
Expand Down
9 changes: 0 additions & 9 deletions .github/workflows/make_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,6 @@ do
make_wheels
done

# Make wheel packages for MacOS platform
plat_type=darwin
plat_name=macosx_14_0_arm64
EXIV2_LIB_FILE='libexiv2.dylib'
for py_version in {8..12}
do
make_wheels
done

# Make wheel packages for MacOS platform
plat_type=darwin
plat_name=macosx_15_0_arm64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-14]
os: [macos-15]
python_version: [3.8, 3.9, '3.10', '3.11', '3.12']
runs-on: ${{ matrix.os }}
steps:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install pyexiv2==2.15.1
python -m pip install pyexiv2==2.15.2
python -m pip install pytest psutil
- name: Test
run: |
Expand All @@ -39,7 +39,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-14]
os: [macos-15]
python_version: [3.8, 3.9, '3.10', '3.11', '3.12']
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -50,7 +50,7 @@ jobs:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install pyexiv2==2.15.1
python -m pip install pyexiv2==2.15.2
python -m pip install pytest psutil
- name: Test
run: |
Expand All @@ -77,7 +77,7 @@ jobs:
python-version: ${{ matrix.python_version }}
- name: Install dependencies
run: |
python -m pip install pyexiv2==2.15.1
python -m pip install pyexiv2==2.15.2
python -m pip install pytest psutil
- name: Test
run: |
Expand Down
2 changes: 1 addition & 1 deletion docs/Tutorial-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def convert_iptc_to_xmp(data: dict, encoding='utf-8') -> dict
def convert_xmp_to_exif(data: dict, encoding='utf-8') -> dict
def convert_xmp_to_iptc(data: dict, encoding='utf-8') -> dict

__version__ = '2.15.1'
__version__ = '2.15.2'
__exiv2_version__ = '0.28.3'
```

Expand Down
2 changes: 1 addition & 1 deletion docs/Tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def convert_iptc_to_xmp(data: dict, encoding='utf-8') -> dict
def convert_xmp_to_exif(data: dict, encoding='utf-8') -> dict
def convert_xmp_to_iptc(data: dict, encoding='utf-8') -> dict

__version__ = '2.15.1'
__version__ = '2.15.2'
__exiv2_version__ = '0.28.3'
```

Expand Down
2 changes: 1 addition & 1 deletion pyexiv2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from .core import *


__version__ = '2.15.1'
__version__ = '2.15.2'
__exiv2_version__ = exiv2api.version()


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setuptools.setup(
name='pyexiv2',
version='2.15.1', # need to set the variable in 'pyexiv2/__init__.py'
version='2.15.2', # need to set the variable in 'pyexiv2/__init__.py'
author='LeoHsiao',
author_email='leohsiao@foxmail.com',
description='Read and write image metadata, including EXIF, IPTC, XMP, ICC Profile.',
Expand Down

0 comments on commit 44c2a30

Please sign in to comment.