From 122dfbb02335f853d1831d2c0d7de61e8e65040e Mon Sep 17 00:00:00 2001 From: Akos Kiss Date: Mon, 26 Aug 2024 16:46:44 +0200 Subject: [PATCH] Unpin Python version for test and lint GH Action jobs (#236) --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 014c743..5959049 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,7 +6,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: [3.8, 3.9, '3.10', '3.11.5', '3.12', 'pypy-3.10'] # FIXME: forcing to use py3.11.5 since py3.11.7 causes an inexplicable failure in multiprocessing. + python-version: [3.8, 3.9, '3.10', '3.11', '3.12', 'pypy-3.10'] runs-on: ${{ matrix.os }} steps: - run: git config --global core.autocrlf input @@ -32,7 +32,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-python@v5 with: - python-version: '3.11' # FIXME: experiencing SIGSEGV with py3.12.0 + python-version: '3.x' - run: pip install --upgrade tox - run: tox -v -e lint