From d212393edbe96d33ee0ba09c29c51a2f86eec485 Mon Sep 17 00:00:00 2001 From: Ihor Kalnytskyi Date: Sun, 5 May 2024 21:39:09 +0300 Subject: [PATCH] Drop Python 3.7; add Python 3.10, 3.11 & 3.12 Python 3.7 reached its end-of-life some time ago now. Currently, it's impossible to setup the 3.7 on macOS runners. It just makes sense to stop supporting this version now. --- .github/workflows/ci.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5daca7c..7a77fc8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] runs-on: ${{ matrix.os }} steps: diff --git a/pyproject.toml b/pyproject.toml index 3fdd194..c46a68c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ repository = "https://github.com/ikalnytskyi/httpie-credential-store" keywords = ["httpie", "credential", "store", "keychain", "plugin", "auth"] [tool.poetry.dependencies] -python = "^3.7" +python = "^3.8" httpie = "^3.1" keyring = "^23.5"