diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d313716..a4029d7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,7 +11,7 @@ jobs: max-parallel: 4 matrix: os: [ubuntu-latest] - 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@v6 diff --git a/README.md b/README.md index 570fdee..aa27a92 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Requirements ------------ - Miniflux >= 2.0.49 -- Python >= 3.8 +- Python >= 3.9 - requests This project uses [Ruff](https://docs.astral.sh/ruff/) for linting and formatting. diff --git a/pyproject.toml b/pyproject.toml index b20fdc6..d875948 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,11 +3,11 @@ name = "miniflux" version = "1.1.5" description = "Client library for Miniflux" readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.9" license = {file = "LICENSE.txt"} keywords = ["rss", "atom", "rdf", "jsonfeed", "feed", "miniflux"] authors = [ - {name = "Frédéric Guillot", email = "fred@miniflux.net"} + {name = "Frédéric Guillot"} ] classifiers = [ "Intended Audience :: Developers", @@ -25,3 +25,6 @@ dependencies = [ [build-system] requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" + +[tool.ruff] +line-length = 120