From 98756b45045844ab8332f58b278a75cf0499f235 Mon Sep 17 00:00:00 2001 From: Anton Petrov Date: Tue, 14 Nov 2023 07:39:46 +0300 Subject: [PATCH] ci: change default python to 3.12 --- .github/workflows/tests-and-linters.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests-and-linters.yml b/.github/workflows/tests-and-linters.yml index a983d1e6..136f67ae 100644 --- a/.github/workflows/tests-and-linters.yml +++ b/.github/workflows/tests-and-linters.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.8, 3.9, "3.10", 3.11] + python-version: [3.8, 3.9, "3.10", 3.11, 3.12] steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 @@ -47,8 +47,8 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: 3.11 - - run: pip install tox cython + python-version: 3.12 + - run: pip install tox cython==0.29.36 - run: make cythonize - run: tox env: @@ -64,7 +64,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: 3.11 + python-version: 3.12 - run: pip install tox - run: tox env: