From 1438b09bed8000e61ce52550fb2b13ff6b4c97ca Mon Sep 17 00:00:00 2001 From: Moul <moul@moul.re> Date: Fri, 12 May 2023 10:41:23 +0200 Subject: [PATCH] Drop Py3.7 support (#437) pyproject and ruff --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ed4a34b4..47972dfe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ keywords = ["g1", "duniter", "cryptocurrency", "librecurrency", "RTM"] include = ["g1_monetary_license/g1_monetary_license_*.rst"] [tool.poetry.dependencies] -python = "^3.7.0" +python = "^3.8.0" duniterpy = "1.1.0" click = "^8.0.0" texttable = "^1.6.3" @@ -46,7 +46,7 @@ ignore_missing_imports = true [tool.ruff] line-length = 101 -target-version = "py37" +target-version = "py38" select = ["F", "W", "I", "UP", "YTT", "B", "A", "DTZ", "T10", "EXE", "ISC", "ICN", "G", "INP", "PIE", "PYI", "Q", "RSE", "SLF", "TID", "PL", "COM", "C4", "PT", "RET", "SIM", "PTH", "PGH", "PL", "TRY", "RUF"] -- GitLab