From 6c2548f1ac475d0beecc35a967d612c3a4d5d4bb Mon Sep 17 00:00:00 2001 From: LuoShui Date: Mon, 9 Dec 2024 16:25:11 +0800 Subject: [PATCH] :wrench: Drop Support for Python 3.8 --- .github/workflows/build.yml | 8 ++++---- pyproject.toml | 3 +-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 090ba72..6c258e5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v4 with: @@ -43,7 +43,7 @@ jobs: runs-on: windows-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v4 with: @@ -68,7 +68,7 @@ jobs: runs-on: macos-latest strategy: matrix: - python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v4 with: @@ -109,7 +109,7 @@ jobs: rust-toolchain: nightly target: ${{ matrix.target }} manylinux: auto - args: --release --out dist --interpreter 3.8 3.9 3.10 3.11 3.12 3.13 + args: --release --out dist --interpreter 3.9 3.10 3.11 3.12 3.13 - name: Upload wheels uses: actions/upload-artifact@v3 with: diff --git a/pyproject.toml b/pyproject.toml index aecd79d..9612682 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "python_genshin_artifact" -requires-python = ">=3.8" +requires-python = ">=3.9" version = "1.0.11" authors = [ {name = "luoshuijs", email = "luoshuijs@outlook.com"}, @@ -13,7 +13,6 @@ classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",