Skip to content

Commit d8a9951

Browse files
author
Jean THOMAS
committed
Drop support for Python 3.8.
1 parent 4d1c4fc commit d8a9951

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/main.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,10 @@ jobs:
1111
strategy:
1212
matrix:
1313
python-version:
14-
- '3.8'
1514
- '3.9'
1615
- '3.10'
1716
- '3.11'
1817
- '3.12'
19-
- 'pypy-3.8'
2018
- 'pypy-3.9'
2119
- 'pypy-3.10'
2220
allow-failure:

docs/install.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ System requirements
66

77
.. |yosys-version| replace:: 0.35 (or newer)
88

9-
Amaranth HDL requires Python 3.8; it works on CPython_ 3.8 (or newer), and works faster on PyPy3.8_ 7.3.7 (or newer). Installation requires pip_ 23.0 (or newer).
9+
Amaranth HDL requires Python 3.9; it works on CPython_ 3.9 (or newer), and works faster on PyPy3.9_ 7.3.7 (or newer). Installation requires pip_ 23.0 (or newer).
1010

1111
For most workflows, Amaranth requires Yosys_ |yosys-version|. A compatible version of Yosys is distributed via PyPI_ for most popular platforms.
1212

@@ -17,8 +17,8 @@ Synthesizing, placing and routing an Amaranth design for an FPGA requires the FP
1717
.. TODO: Link to FPGA family docs here
1818
1919
.. _CPython: https://www.python.org/
20-
.. _PyPy3.8: https://www.pypy.org/
21-
.. _pip: https://pip.pypa.io/
20+
.. _PyPy3.9: https://www.pypy.org/
21+
.. _pip: https://pip.pypa.io/en/stable/
2222
.. _Yosys: https://yosyshq.net/yosys/
2323
.. _PyPI: https://pypi.org/
2424
.. _GTKWave: http://gtkwave.sourceforge.net/

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@ readme = "README.md"
1212
authors = [{name = "Amaranth HDL contributors"}]
1313
license = {file = "LICENSE.txt"}
1414

15-
requires-python = "~=3.8"
15+
requires-python = "~=3.9"
1616
dependencies = [
17-
"importlib_resources; python_version<'3.9'", # for amaranth._toolchain.yosys
1817
"pyvcd>=0.2.2,<0.5", # for amaranth.sim.pysim
1918
"Jinja2~=3.0", # for amaranth.build
2019
]

0 commit comments

Comments
 (0)