From 51d9f70b4cf068142e719ebeabaeab766e0a9b92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juancarlo=20A=C3=B1ez?= Date: Thu, 12 Oct 2023 13:16:49 -0400 Subject: [PATCH] [build] update pipleline to py312 (#313) --- .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