From 68573ed69d371515f139422f92d586b8f75985a0 Mon Sep 17 00:00:00 2001 From: lorenzo Date: Wed, 28 Aug 2024 12:46:25 +0200 Subject: [PATCH] fix: remove python=3.9 --- .github/workflows/ci.yml | 2 +- pyproject.toml | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 244bfda..6a65cf8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.10", "3.11", "3.12"] platform: [ubuntu-latest, macos-latest, windows-latest] steps: diff --git a/pyproject.toml b/pyproject.toml index 9ed6a46..571d242 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ name = "ngio" dynamic = ["version"] description = "Next Generation file format IO" readme = "README.md" -requires-python = ">=3.9" +requires-python = ">=3.10" license = { text = "BSD-3-Clause" } authors = [{ name = "Lorenzo Cerrone", email = "lorenzo.cerrone@uzh.ch" }] # https://pypi.org/classifiers/ @@ -26,7 +26,6 @@ classifiers = [ "Development Status :: 3 - Alpha", "License :: OSI Approved :: BSD License", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", @@ -76,7 +75,7 @@ repository = "https://github.com/lorenzocerrone/ngio" # https://docs.astral.sh/ruff [tool.ruff] line-length = 88 -target-version = "py39" +target-version = "py310" src = ["src"] # https://docs.astral.sh/ruff/rules