From 457e93c69b259ccfcd1ffdf97eedffc4b8ece085 Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Mon, 4 Nov 2024 13:44:04 +0100 Subject: [PATCH] Drop formal support for py 3.8 (#636) --- .github/workflows/ci.yml | 3 --- docs/start.rst | 2 +- pyproject.toml | 2 +- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2970ac47..a760c761 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -159,9 +159,6 @@ jobs: fail-fast: false matrix: include: - - name: Test Linux py38 - os: ubuntu-latest - pyversion: '3.8' - name: Test Linux py39 os: ubuntu-latest pyversion: '3.9' diff --git a/docs/start.rst b/docs/start.rst index dbd23e73..156f3759 100644 --- a/docs/start.rst +++ b/docs/start.rst @@ -7,7 +7,7 @@ Install with pip ---------------- You can install ``wgpu-py`` via pip. -Python 3.8 or higher is required. Pypy is supported. Only depends on ``cffi`` (installed automatically by pip). +Python 3.9 or higher is required. Pypy is supported. Only depends on ``cffi`` (installed automatically by pip). .. code-block:: bash diff --git a/pyproject.toml b/pyproject.toml index f98f6ed3..6e8a9345 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ readme = "README.md" license = { file = "LICENSE" } authors = [{ name = "Almar Klein" }, { name = "Korijn van Golen" }] keywords = ["webgpu", "wgpu", "vulkan", "metal", "DX12", "opengl"] -requires-python = ">= 3.8" +requires-python = ">= 3.9" dependencies = ["cffi>=1.15.0", "rubicon-objc>=0.4.1; sys_platform == 'darwin'"] [project.optional-dependencies]