From 3829af16fb9533c50dfabbec990ffd60245d0332 Mon Sep 17 00:00:00 2001 From: "James R. Barlow" Date: Tue, 26 Sep 2023 15:46:47 -0700 Subject: [PATCH] Fix bdist_wheel tag set to py38 --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 34a1a1c4..9fc4241d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -77,11 +77,11 @@ namespaces = false [tool.setuptools_scm] [tool.distutils.bdist_wheel] -python-tag = "py38" +python-tag = "py39" [tool.black] line-length = 88 -target-version = ["py38", "py39", "py310", "py311"] +target-version = ["py39", "py310", "py311"] skip-string-normalization = true include = '\.pyi?$' exclude = ''' @@ -157,7 +157,7 @@ select = [ "I001", # isort "UP", # pyupgrade ] -target-version = "py38" +target-version = "py39" [tool.ruff.isort] known-first-party = ["ocrmypdf"]