diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-11-01 19:27:34 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-11-02 05:32:22 +0100 |
commit | 10ba87d01a47f1d829b9c4e4783a7b1934bac372 (patch) | |
tree | cc4ec2d051c4567ae053cf359dd0f21ed8638d79 /.github/workflows | |
parent | Makefile: align assignments (diff) | |
download | cimple-10ba87d01a47f1d829b9c4e4783a7b1934bac372.tar.gz cimple-10ba87d01a47f1d829b9c4e4783a7b1934bac372.zip |
fix Python version for GitHub Actions runs
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 28acea1..02403b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,8 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.x' + # Unpin when this is fixed: https://github.com/python/cpython/issues/111615 + python-version: '3.11' cache: pip cache-dependency-path: ./test/py/requirements.txt - name: Install dependencies |