From 45e2872fab0e09db8f0e211613e40d981b63c726 Mon Sep 17 00:00:00 2001 From: wulan17 Date: Fri, 20 Sep 2024 18:21:21 +0700 Subject: [PATCH] pyrofork: drop python 3.8 support Signed-off-by: wulan17 --- .github/workflows/python.yml | 4 ++-- pyproject.toml | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 556c2f16..ef0b3bc2 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 @@ -31,4 +31,4 @@ jobs: - name: Run tests run: | - tox \ No newline at end of file + tox diff --git a/pyproject.toml b/pyproject.toml index 93ec61cc..c511a1b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ authors = [{ name = "wulan17", email = "mayuri@mayuri.my.id" }] dependencies = ["pyaes==1.6.1", "pysocks==1.7.1", "pymediainfo-pyrofork>=6.0.1,<7.0.0"] readme = "README.md" license = "LGPL-3.0-or-later" -requires-python = "~=3.8" +requires-python = "~=3.9" classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", @@ -15,7 +15,6 @@ classifiers = [ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",