diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2c78222..7676350 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -10,7 +10,7 @@ jobs: fail-fast: true matrix: os: ["ubuntu-latest"] - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.9", "3.10", "3.11"] experimental: [false] env: diff --git a/.github/workflows/end-to-end.yaml b/.github/workflows/end-to-end.yaml index 04aa1ea..348026c 100644 --- a/.github/workflows/end-to-end.yaml +++ b/.github/workflows/end-to-end.yaml @@ -16,7 +16,7 @@ jobs: fail-fast: true matrix: os: ["ubuntu-latest"] - python-version: ["3.8"] + python-version: ["3.12"] experimental: [false] env: diff --git a/setup.py b/setup.py index 27974a5..dc3a5b2 100644 --- a/setup.py +++ b/setup.py @@ -77,5 +77,5 @@ scripts=[os.path.join("bin", item) for item in os.listdir("bin")], install_requires=requires, extras_require=extras_require, - python_requires=">=3.8", + python_requires=">=3.9", )