Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Installing with Python 3.10 #294

Closed
andresmanelli opened this issue Nov 15, 2022 · 2 comments
Closed

Installing with Python 3.10 #294

andresmanelli opened this issue Nov 15, 2022 · 2 comments
Labels
software Component: software

Comments

@andresmanelli
Copy link

Hello,

I tried installing the software from Python 3.10 and I had trouble with aiohttp. Apparently it's resolving to version 4.0.0, but version 3.8.1 is newer (See this comment).

My workaround was to apply this patch:

diff --git a/software/setup.py b/software/setup.py
index 289ead7..0b7e0e1 100644
--- a/software/setup.py
+++ b/software/setup.py
@@ -29,7 +29,7 @@ setup(
         "amaranth",
         "fx2>=0.9",
         "libusb1>=1.8.1",
-        "aiohttp",
+        "aiohttp==3.8.3",
         "pyvcd",
         "bitarray",
         "crcmod",

Maybe this is a symptom for another problem, but this worked for me.

@whitequark whitequark added the software Component: software label Nov 15, 2022
@whitequark
Copy link
Member

Thanks, I'll take a look.

whitequark added a commit that referenced this issue Feb 7, 2023
@whitequark
Copy link
Member

Thanks for the report! Should be fixed now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
software Component: software
Projects
None yet
Development

No branches or pull requests

2 participants