From b482dc20b4eb4ea1552d39dcd900f994138d064c Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Sat, 13 Apr 2024 09:21:41 +0200 Subject: [PATCH] Drop support for python 3.7 --- .github/workflows/test.yml | 7 ++++--- pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5417a2f..bc43028 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,12 +7,13 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - - uses: actions/checkout@v3 + - name: Check out code + uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies diff --git a/pyproject.toml b/pyproject.toml index eb75f97..081b5e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ authors = [{ name="Ivan Habunek", email="ivan@habunek.com" }] description = "Mastodon CLI client" readme = "README.rst" license = { file="LICENSE" } -requires-python = ">=3.7" +requires-python = ">=3.8" dynamic = ["version"] classifiers = [