From bfe11a3be2b2b2a3d881684d0965175fd4523470 Mon Sep 17 00:00:00 2001 From: Maximilian Roos Date: Mon, 9 Sep 2024 10:10:35 -0700 Subject: [PATCH] Bump min python version to 3.9 --- .github/workflows/test.yaml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a48c2cd..80f41b0 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.12"] + python-version: ["3.9", "3.12"] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: diff --git a/pyproject.toml b/pyproject.toml index 29bd609..72aecc2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ accept = "pytest_accept" [tool.poetry.dependencies] pytest = ">=7" -python = ">=3.8, <4" +python = ">=3.9, <4" [tool.poetry.group.dev.dependencies] astor = "^0.8.1"