We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4818c65 commit f3e14e9Copy full SHA for f3e14e9
.github/workflows/pytest.yml
@@ -19,15 +19,17 @@ jobs:
19
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
20
# An issue with secp256k1 prevents Python 3.12 from working
21
# See https://github.com/baking-bad/pytezos/issues/370
22
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
23
24
steps:
25
- uses: actions/checkout@v4
26
- uses: actions/setup-python@v5
27
with:
28
python-version: ${{ matrix.python-version }}
29
30
- - run: sudo apt-get install -y python3-pip libsecp256k1-dev
+ - run: |
31
+ sudo apt-get update
32
+ sudo apt-get install -y python3-pip libsodium-dev
33
34
- run: |
35
python3 -m venv /tmp/venv
0 commit comments