Merge pull request #331643 from mattpolzin/abjad-python-versions

pythonPackages.abjad: mark disabled for Python 3.12
This commit is contained in:
2024-08-02 08:15:56 +02:00
committed by GitHub
@@ -6,6 +6,7 @@
roman,
uqbar,
pythonOlder,
pythonAtLeast,
pytestCheckHook,
lilypond,
typing-extensions,
@@ -16,7 +17,9 @@ buildPythonPackage rec {
version = "3.19";
format = "setuptools";
disabled = pythonOlder "3.10";
# see issue upstream indicating Python 3.12 support will come
# with version 3.20: https://github.com/Abjad/abjad/issues/1574
disabled = pythonOlder "3.10" || pythonAtLeast "3.12";
src = fetchPypi {
inherit pname version;