Skip to content
Closed
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-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
\${PYBIN}/pip install --upgrade pip wheel &&
\${PYBIN}/pip install toml==0.10.2 &&
\${PYBIN}/pip install setuptools==68.0.0 &&
CFLAGS=\"-I/opt/python/cp310-cp310/include/python3.10\" LDFLAGS=\"-L/opt/python/cp310-cp310/lib\" \${PYBIN}/python setup.py bdist_wheel --plat-name $PLATFORM_TAG
CFLAGS=\"-I/opt/python/cp310-cp310/include/python3.9\" LDFLAGS=\"-L/opt/python/cp310-cp310/lib\" \${PYBIN}/python setup.py bdist_wheel --plat-name $PLATFORM_TAG
done &&
rm -f /io/dist/*-linux_*.whl
"
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.9"
cache: "pip"

- name: Install project dependencies
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.9"
cache: "pip"

- name: Install project dependencies
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
uses: ./.github/workflows/build-wheel.yml
needs: [tests-unix, read-version]
with:
python-version: "3.10"
python-version: "3.9"
architecture: ${{ matrix.target }}
artifact-name: wheels-linux-${{ matrix.target }}
runs-on: ${{ matrix.runs-on }}
Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.9"
cache: "pip"

- name: Download wheel artifacts
Expand Down Expand Up @@ -251,7 +251,7 @@ jobs:
uses: ./.github/workflows/build-wheel.yml
needs: [tests-windows, read-version]
with:
python-version: "3.10"
python-version: "3.9"
architecture: ${{ matrix.target }}
artifact-name: wheels-windows-${{ matrix.target }}
runs-on: windows-latest
Expand Down Expand Up @@ -289,7 +289,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.9"
cache: "pip"

- name: Download wheel artifacts
Expand Down Expand Up @@ -330,7 +330,7 @@ jobs:
uses: ./.github/workflows/build-wheel.yml
needs: [tests-unix, read-version]
with:
python-version: "3.10"
python-version: "3.9"
runs-on: ${{ matrix.runs-on }}
artifact-name: wheels-macos-${{ matrix.target }}
architecture: ${{ matrix.target }}
Expand Down Expand Up @@ -380,7 +380,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.9"
cache: "pip"

- name: Download wheel artifacts
Expand Down Expand Up @@ -428,7 +428,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.9"
cache: "pip"
- name: Install dependencies
run: pip install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Features:

## Prerequisites

This library requires Python version 3.10+.
This library requires Python version 3.9+.

## Package installation

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "c2pa-python"
version = "0.23.1"
requires-python = ">=3.10"
requires-python = ">=3.9"
description = "Python bindings for the C2PA Content Authenticity Initiative (CAI) library"
readme = { file = "README.md", content-type = "text/markdown" }
license = { text = "MIT OR Apache-2.0" }
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ def find_available_platforms():
"Programming Language :: Python :: 3",
get_platform_classifier(target_platform),
],
python_requires=">=3.10",
python_requires=">=3.9",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="MIT OR Apache-2.0",
Expand All @@ -242,7 +242,7 @@ def find_available_platforms():
"Programming Language :: Python :: 3",
get_platform_classifier(get_current_platform()),
],
python_requires=">=3.10",
python_requires=">=3.9",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
license="MIT OR Apache-2.0",
Expand Down
Loading