From 315b13dd192dd4350c262bad1effb5beaad5a302 Mon Sep 17 00:00:00 2001 From: David SPORN Date: Sun, 2 Oct 2022 11:38:55 +0200 Subject: [PATCH] fixes CI using amaranth commit --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 724e5c43..c2d8b09c 100644 --- a/setup.py +++ b/setup.py @@ -19,9 +19,10 @@ def local_scheme(version): description="Board and connector definitions for Amaranth HDL", #long_description="""TODO""", license="BSD", + python_requires="~=3.7", setup_requires=["wheel", "setuptools", "setuptools_scm"], install_requires=[ - "amaranth>=0.2,<0.5", + "amaranth @ git+https://github.com/amaranth-lang/amaranth@3a51b612844a23b08e744c4b3372ecb44bf9fe5d", #"amaranth>=0.2,<0.5", "importlib_metadata; python_version<'3.8'", ], packages=find_packages(),