From 4cbf78d1095c9b18abe2745832c3c0c43e77a508 Mon Sep 17 00:00:00 2001 From: Jake Stevens-Haas <37048747+Jacob-Stevens-Haas@users.noreply.github.com> Date: Mon, 13 May 2024 18:42:25 -0700 Subject: [PATCH] BLD: Bump requirements to python 3.9 I started to use type annotations that are available only in 3.9 Since 3.8 reaches end of life in october and new versions of numpy are targetting 3.9, I think it's safe to upgrade the minimum version here. --- .github/workflows/pull-docs.yml | 2 +- .github/workflows/push-test.yml | 2 +- .github/workflows/release.yml | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull-docs.yml b/.github/workflows/pull-docs.yml index db86adb..73446dc 100644 --- a/.github/workflows/pull-docs.yml +++ b/.github/workflows/pull-docs.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ "3.7" ] + python-version: [ "3.9" ] poetry-version: [ "1.2.1" ] steps: # ====== diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index b3b1659..323ab4b 100644 --- a/.github/workflows/push-test.yml +++ b/.github/workflows/push-test.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7"] + python-version: ["3.9"] poetry-version: ["1.2.1"] steps: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aeb86f5..cc27b21 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: name: release strategy: matrix: - python-version: ["3.7"] + python-version: ["3.9"] poetry-version: ["1.2.1"] steps: # ====== diff --git a/pyproject.toml b/pyproject.toml index 107e0bd..20fd541 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ readme = "README.rst" [tool.poetry.dependencies] -python = "^3.7" +python = "^3.9" numpy = "^1.18.3" scipy = "^1.4.1" scikit-learn = "^1"