From 7253f22759ff5e7ab62272ab313bbca43d007c0e Mon Sep 17 00:00:00 2001 From: wulan17 Date: Fri, 8 Dec 2023 01:16:11 +0700 Subject: [PATCH] Pyrofork: Drop python3.7 support (EOL) Signed-off-by: wulan17 --- .github/workflows/python.yml | 2 +- pyproject.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index e12233fb2..f65018ca4 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.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 diff --git a/pyproject.toml b/pyproject.toml index 9fe9755ab..293008f20 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.7" +requires-python = "~=3.8" classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", @@ -15,11 +15,11 @@ classifiers = [ "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", @@ -50,7 +50,7 @@ build-backend = "hatchling.build" [project.optional-dependencies] dev = [ - "hatchling>=1.17.1", + "hatchling>=1.18.1", "pytest>=7.4.3", "pytest-asyncio>=0.21.1", "pytest-cov>=4.1.0", @@ -68,7 +68,7 @@ docs = [ speedup = [ "tgcrypto>=1.2.5", - "uvloop>=0.18.0" + "uvloop>=0.19.0" ] [tool.hatch.metadata]