Skip to content

Commit 6cf9209

Browse files
committed
fix: Universal pipeline
1 parent 407a423 commit 6cf9209

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
github.event.pull_request.user.login == 'dependabot[bot]' ||
106106
contains(github.event.pull_request.labels.*.name, 'safe to test')
107107
108-
runs-on: [ windows-latest, windows-2022 ]
108+
runs-on: windows-latest
109109

110110
steps:
111111
- name: Checkout repository

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "c2pa-python"
7-
version = "0.12.1"
7+
version = "0.13.0"
88
requires-python = ">=3.10"
99
description = "Python bindings for the C2PA Content Authenticity Initiative (CAI) library"
1010
readme = { file = "README.md", content-type = "text/markdown" }

src/c2pa/lib.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,6 @@
2121
logger.addHandler(logging.NullHandler())
2222

2323

24-
class CPUArchitecture(Enum):
25-
"""CPU architecture enum for platform-specific identifiers."""
26-
AARCH64 = "aarch64"
27-
X86_64 = "x86_64"
28-
29-
3024
def get_platform_identifier() -> str:
3125
"""Get the platform identifier (arch-os) for the current system,
3226
matching the downloaded identifiers used by the Github publisher.

0 commit comments

Comments
 (0)