Skip to content

Commit 1b10e32

Browse files
committed
ci ubuntu 22.04
1 parent 3378835 commit 1b10e32

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/cross_platform_tests.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
strategy:
2828
fail-fast: false # Continue with other jobs if one fails
2929
matrix:
30-
os: [ubuntu-latest]
30+
os: [ubuntu-22.04]
3131
python-version: ['3.11', '3.12']
3232

3333
steps:
@@ -68,6 +68,12 @@ jobs:
6868
echo "VIRTUAL_ENV=$PWD/.venv" >> $GITHUB_ENV
6969
echo "$PWD/.venv/bin" >> $GITHUB_PATH
7070
71+
- name: Install system dependencies
72+
run: |
73+
sudo apt-get update
74+
sudo apt-get install -y libssl-dev pkg-config build-essential
75+
shell: bash
76+
7177
- name: Install dependencies
7278
run: |
7379
python -m pip install --upgrade pip
@@ -94,7 +100,8 @@ jobs:
94100
command: build
95101
args: --release
96102
sccache: 'true'
97-
manylinux: '2_34'
103+
env:
104+
OPENSSL_NO_VENDOR: 1
98105

99106
- name: Upload wheels
100107
uses: actions/upload-artifact@v4

pyproject.toml

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

55
[project]
66
name = "fast-c2pa-python"
7-
version = "0.1.2"
7+
version = "0.1.3"
88
requires-python = ">=3.11"
99
classifiers = [
1010
"Programming Language :: Rust",

0 commit comments

Comments
 (0)