From 5d916037c8934694214182393671b5e43db10b2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E4=B8=80=E6=B6=B5?= Date: Tue, 23 Apr 2024 19:56:31 +0800 Subject: [PATCH] use python3.7 --- .github/workflows/ci.yml | 2 +- pyproject.toml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c7dba23..de01438 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: strategy: matrix: OS: [ Ubuntu, macOS, Windows ] - python-version: [ "3.8" ] + python-version: [ "3.7" ] include: - os: Ubuntu image: ubuntu-22.04 diff --git a/pyproject.toml b/pyproject.toml index f6adbf4..c947d4f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ license = "mit" readme = "README.md" [tool.poetry.dependencies] -python = "^3.8" +python = "^3.7" jill = "^0.11.1" wisepy2 = "^1.3" tomli = "^2.0.1" @@ -26,8 +26,8 @@ pytest-cov = "^4.1.0" [tool.poetry.group.dev.dependencies] isort = "5.11.5" -black = "22.12.0" -mypy = "^1.9.0" +black = "23.3.0" +mypy = "1.4.1" [tool.isort] profile = "black" @@ -35,7 +35,7 @@ skip = [".venv", "logs"] [tool.mypy] -python_version = "3.8" +python_version = "3.7" warn_return_any = true warn_unused_configs = true check_untyped_defs = true