From 3ae62be92683d4f99b7f3e70905992bbf46440bb Mon Sep 17 00:00:00 2001 From: Mike Walters Date: Tue, 3 Dec 2024 13:27:19 +0000 Subject: [PATCH] Update Python versions: drop 3.8, add 3.13 to CI --- .github/workflows/host.yml | 2 +- pyproject.toml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/host.yml b/.github/workflows/host.yml index 61bc62a..b2be6e3 100644 --- a/.github/workflows/host.yml +++ b/.github/workflows/host.yml @@ -16,11 +16,11 @@ jobs: max-parallel: 5 matrix: python-version: - - '3.8' - '3.9' - '3.10' - '3.11' - '3.12' + - '3.13' name: test (${{ matrix.python-version }}) steps: diff --git a/pyproject.toml b/pyproject.toml index 3c86276..408d2c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ authors = [ license = { text = "BSD" } description = "Python library and host tools for Apollo FPGA debug controllers." readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.9" classifiers = [ 'Programming Language :: Python', 'Development Status :: 5 - Production/Stable', @@ -24,7 +24,6 @@ classifiers = [ 'Topic :: Scientific/Engineering', ] dependencies = [ - "importlib_resources; python_version<'3.9'", "pyusb>1.1.1", "pyvcd>=0.2.4", "prompt-toolkit>3.0.16",