From 618a13fb7108f69197d698df4d64c203553deaae Mon Sep 17 00:00:00 2001
From: Catherine <whitequark@whitequark.org>
Date: Sat, 12 Oct 2024 13:36:56 +0000
Subject: [PATCH] Drop support for Python 3.8.

---
 .github/workflows/main.yml | 3 +--
 pyproject.toml             | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 59ae727..98a662d 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -13,12 +13,11 @@ jobs:
     strategy:
       matrix:
         python-version:
-        - '3.8'
         - '3.9'
         - '3.10'
         - '3.11'
         - '3.12'
-        - 'pypy-3.8'
+        - '3.13'
         - 'pypy-3.9'
         - 'pypy-3.10'
         # this version range needs to be synchronized with the one in pyproject.toml
diff --git a/pyproject.toml b/pyproject.toml
index 45abf91..6ed28ef 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -11,7 +11,7 @@ description = "Industry standard I/O for Amaranth HDL"
 authors = [{name = "Amaranth HDL contributors"}]
 license = {file = "LICENSE.txt"}
 
-requires-python = "~=3.8"
+requires-python = "~=3.9"
 dependencies = [
   # this version requirement needs to be synchronized with the one in .github/workflows/main.yml
   "amaranth>=0.5,<0.6",