Skip to content

Commit e0b9679

Browse files
committed
update version c2pa
1 parent c84992a commit e0b9679

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

.github/workflows/cross_platform_tests.yml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
fail-fast: false # Continue with other jobs if one fails
2727
matrix:
28-
python-version: ['3.10']
28+
python-version: ['3.11']
2929

3030
steps:
3131
- uses: actions/checkout@v4
@@ -36,6 +36,27 @@ jobs:
3636
uses: actions/setup-python@v4
3737
with:
3838
python-version: ${{ matrix.python-version }}
39+
40+
# Cache Python packages
41+
- name: Cache pip packages
42+
uses: actions/cache@v3
43+
with:
44+
path: ~/.cache/pip
45+
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/requirements.txt') }}
46+
restore-keys: |
47+
${{ runner.os }}-pip-${{ matrix.python-version }}-
48+
49+
# Cache Rust dependencies
50+
- name: Cache Cargo registry and index
51+
uses: actions/cache@v3
52+
with:
53+
path: |
54+
~/.cargo/registry
55+
~/.cargo/git
56+
target
57+
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.toml', '**/Cargo.lock') }}
58+
restore-keys: |
59+
${{ runner.os }}-cargo-
3960
4061
- name: Create virtual environment
4162
run: |

tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pytest>=7.0.0
22
pytest-benchmark>=4.0.0
33
statistics>=1.0.3.5
4-
c2pa-python>=0.8.0
4+
c2pa-python>=0.9.0
55
cryptography>=44.0.0

0 commit comments

Comments
 (0)