From 8d0900cf92ce6c87048f2ece47abcc6e77b1c17c Mon Sep 17 00:00:00 2001 From: Oleh Prypin Date: Tue, 19 Sep 2023 00:23:04 +0200 Subject: [PATCH] Drop Python 3.7 (#75) --- .github/workflows/ci.yml | 12 ++++++------ pyproject.toml | 3 +-- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19f50e0..c7e151e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,17 +13,17 @@ jobs: fail-fast: false matrix: include: - - python: '^3.10' + - python: '^3.11' os: macos-latest - - python: '3.10' + - python: '3.11' os: windows-latest - - python: 3.9 + - python: '3.10' os: ubuntu-latest - - python: 3.8 + - python: '3.9' os: macos-latest - - python: 3.7 + - python: '3.8' os: windows-latest - - python: 3.7 + - python: '3.8' os: ubuntu-latest versions: minimal runs-on: ${{matrix.os}} diff --git a/pyproject.toml b/pyproject.toml index b4d135c..9b32819 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,6 @@ classifiers = [ "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -30,7 +29,7 @@ classifiers = [ "Typing :: Typed", ] dynamic = ["version"] -requires-python = ">=3.7" +requires-python = ">=3.8" dependencies = [ "click >=8.1", "markdown >=3.3",