From 1326a67d94b8df8230d20bc2c01341f37e0ebe78 Mon Sep 17 00:00:00 2001 From: apalala Date: Thu, 12 Oct 2023 12:32:40 -0400 Subject: [PATCH] [build] update pipleline to py312 --- .github/workflows/default.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index d15cf4a5..afae9de1 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -14,7 +14,7 @@ jobs: fail-fast: false matrix: python-version: [ - '3.10', + '3.12', '3.11', ] @@ -34,7 +34,7 @@ jobs: python -m pip install --upgrade pip pip install --upgrade --requirement requirements-test.txt - name: lint - if: ${{ matrix.python-version == '3.10' }} + # if: ${{ matrix.python-version == '3.12' }} run: | make lint - name: pytest @@ -44,7 +44,6 @@ jobs: run: | make examples - name: documentation - if: ${{ matrix.python-version == '3.10' }} run: | make documentation - name: distributions