From a31d5af05619a4e3683f364c829b10d5e62f7f99 Mon Sep 17 00:00:00 2001 From: yuangezhizao-M1Pro Date: Wed, 6 Mar 2024 14:52:54 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20Fix-ci(ci.yml):=20remove=20Pytho?= =?UTF-8?q?n=202.7.x=20from=20the=20CI=20matrix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c9ba99..6948a59 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,12 +17,11 @@ jobs: strategy: fail-fast: false matrix: - # https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources + # https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources os: [ ubuntu-20.04, macos-latest, windows-latest ] - python-version: [ "2.7", "3.6", "3.x" ] + python-version: [ "3.6", "3.x" ] exclude: - - os: windows-latest - python-version: "2.7" + - python-version: "3.x" steps: - uses: actions/checkout@v3