Skip to content

Commit 183fde6

Browse files
committed
ci: use python 3.12 as the reference version for tests
1 parent 95b7a49 commit 183fde6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build-wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
if: startsWith(matrix.os, 'macos')
2828
uses: actions/setup-python@v2
2929
with:
30-
python-version: 3.11
30+
python-version: 3.12
3131

3232
- name: Cache dependencies
3333
uses: actions/cache@v4

.github/workflows/pytest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: [ "3.9", "3.10", "3.11" ]
19+
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
2020
# An issue with secp256k1 prevents Python 3.12 from working
2121
# See https://github.com/baking-bad/pytezos/issues/370
2222
runs-on: ubuntu-latest
@@ -37,13 +37,13 @@ jobs:
3737
/tmp/venv/bin/pip freeze
3838
/tmp/venv/bin/hatch run testing:pip freeze
3939
/tmp/venv/bin/hatch run testing:test
40-
if: matrix.python-version != '3.11'
40+
if: matrix.python-version != '3.12'
4141
4242
- run: /tmp/venv/bin/hatch run testing:cov
43-
if: matrix.python-version == '3.11'
43+
if: matrix.python-version == '3.12'
4444

4545
- uses: codecov/[email protected]
46-
if: matrix.python-version == '3.11'
46+
if: matrix.python-version == '3.12'
4747
with:
4848
token: ${{ secrets.CODECOV_TOKEN }}
4949
slug: aleph-im/aleph-sdk-python

0 commit comments

Comments
 (0)