From 861a792b01d5be5d86817ef05c1ba2a86e23b2d5 Mon Sep 17 00:00:00 2001 From: Ryuichi Yamamoto Date: Sat, 13 Jul 2024 14:03:48 +0900 Subject: [PATCH] drop python 3.7 --- .github/workflows/ci.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ba1815c..ac4b963 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,14 +16,14 @@ jobs: strategy: matrix: include: - - os: ubuntu-latest - python-version: 3.7 - os: ubuntu-latest python-version: 3.8 - os: ubuntu-latest python-version: 3.9 - os: ubuntu-latest python-version: '3.10' + - os: ubuntu-latest + python-version: '3.11' - os: macos-latest python-version: 3.9 - os: windows-latest @@ -42,7 +42,6 @@ jobs: python -m pip install --upgrade pip pip install -e ".[dev]" - name: Lint with pysen - if: ${{ matrix.python-version != '3.7' }} run: | pysen run lint - name: Test with pytest