🔧 Drop Support for Python 3.8

This commit is contained in:
LuoShui 2024-12-09 16:25:11 +08:00
parent 68bef8ce3d
commit 6c2548f1ac
No known key found for this signature in database
GPG Key ID: 2C487F6F644C9EDB
2 changed files with 5 additions and 6 deletions

View File

@ -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:

View File

@ -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",