From 88c01babf91468efcec8c18fa4b7156c6f3d1258 Mon Sep 17 00:00:00 2001 From: fwkz <2480867+fwkz@users.noreply.github.com> Date: Tue, 16 Jan 2024 22:50:40 +0100 Subject: [PATCH] Fix python 3.10 --- .github/workflows/test.yml | 2 +- pyproject.toml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3f80187..bc65aca 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: strategy: matrix: os: [macOS-10.15, ubuntu-22.04] - python-version: [3.7, 3.8, 3.9, "3.10", 3.11, 3.12] + python-version: [3.8, 3.9, "3.10", 3.11, 3.12] steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} diff --git a/pyproject.toml b/pyproject.toml index 717fdbe..c4a0e41 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ authors = [ {name = "Mariusz Kupidura"}, ] dynamic = ["version"] -requires-python = ">= 3.7" +requires-python = ">= 3.6" readme = "README.md" license = {file = "LICENSE"} classifiers=[ @@ -19,7 +19,6 @@ classifiers=[ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10",