Skip to content

Commit f3e14e9

Browse files
committed
qsd
1 parent 4818c65 commit f3e14e9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/pytest.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,17 @@ jobs:
1919
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
22-
runs-on: ubuntu-latest
22+
runs-on: ubuntu-22.04
2323

2424
steps:
2525
- uses: actions/checkout@v4
2626
- uses: actions/setup-python@v5
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929

30-
- run: sudo apt-get install -y python3-pip libsecp256k1-dev
30+
- run: |
31+
sudo apt-get update
32+
sudo apt-get install -y python3-pip libsodium-dev
3133
3234
- run: |
3335
python3 -m venv /tmp/venv

0 commit comments

Comments
 (0)