From 6cd0083ffc90b0b6e7fc53c8c7eb69a8cde20bee Mon Sep 17 00:00:00 2001 From: "hi.xiaohai" Date: Sun, 12 May 2024 12:04:15 +0800 Subject: [PATCH] fix: limit pylint python version to 3.9 --- .github/workflows/pylint.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index a1d944b..ee8259e 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8","3.9"] + python-version: ["3.9"] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/setup.py b/setup.py index 83c9ac0..671cb56 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ def get_version(): ] }, classifiers=[ - "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.9", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ],