From d92ba1a761008792051ba6b775b5ec786b761732 Mon Sep 17 00:00:00 2001 From: Maurice Berk Date: Fri, 3 Nov 2023 16:29:44 +0000 Subject: [PATCH] Bump required Python version --- .github/workflows/test.yml | 2 +- README.md | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bf3cc1e..58131a5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v3 diff --git a/README.md b/README.md index 39ca1d6..8d692c8 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ of dividing the inverse odds by the booksum [[3](#3)]. # Installation -Requires Python 3.8 or above. +Requires Python 3.9 or above. ``` pip install shin diff --git a/pyproject.toml b/pyproject.toml index 3471cac..df3fba4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "shin" -requires-python = ">=3.8" +requires-python = ">=3.9" classifiers = [ "Programming Language :: Rust", "Programming Language :: Python :: Implementation :: CPython",