From daac73b59328592c4e546e47e626d53e8a060bd5 Mon Sep 17 00:00:00 2001 From: ATATC Date: Sun, 5 May 2024 12:44:45 -0400 Subject: [PATCH] Added `pysdl2-dll` to the optional dependencies. (#125) --- leads_audio/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/leads_audio/__init__.py b/leads_audio/__init__.py index a87101bc..b280d585 100644 --- a/leads_audio/__init__.py +++ b/leads_audio/__init__.py @@ -1,6 +1,6 @@ from importlib.util import find_spec as _find_spec if not _find_spec("sdl2"): - raise ImportError("Please install `PySDL2` to run this module\n>>>pip install PySDL2") + raise ImportError("Please install `PySDL2` and `pysdl2-dll` to run this module\n>>>pip install PySDL2 pysdl2-dll") from leads_audio.prototype import *