Skip to content

Commit

Permalink
Merge pull request #331643 from mattpolzin/abjad-python-versions
Browse files Browse the repository at this point in the history
pythonPackages.abjad: mark disabled for Python 3.12
  • Loading branch information
gador authored Aug 2, 2024
2 parents ce0f3ba + 64a5d55 commit c6de1e8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/development/python-modules/abjad/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
roman,
uqbar,
pythonOlder,
pythonAtLeast,
pytestCheckHook,
lilypond,
typing-extensions,
Expand All @@ -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;
Expand Down

0 comments on commit c6de1e8

Please sign in to comment.