From 36c4f772b5cfc2ed1737006ac01167d16450bac3 Mon Sep 17 00:00:00 2001 From: David Kane Date: Tue, 9 Jan 2024 22:31:54 +0000 Subject: [PATCH] ensure support is removed from python 3.7 --- pyproject.toml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 567f8fb..d416f66 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "airtable-to-sqlite" dynamic = ["version"] description = 'Export Airtable bases to an sqlite database' readme = "README.md" -requires-python = ">=3.7" +requires-python = ">=3.8" license = "MIT" keywords = [] authors = [{ name = "David Kane", email = "david@dkane.net" }] @@ -73,13 +73,8 @@ all = ["style", "typing"] [tool.mypy] ignore_missing_imports = true -[tool.black] -target-version = ["py37"] -line-length = 120 -skip-string-normalization = true - [tool.ruff] -target-version = "py37" +target-version = "py38" line-length = 120 select = [ "A",