Merge pull request #255306 from natsukium/memray/fix-python311

memray: fix test with python311
This commit is contained in:
Fabian Affolter 2023-09-16 09:25:54 +02:00 committed by GitHub
commit dade3f0b8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -37,7 +37,7 @@ python3.pkgs.buildPythonApplication rec {
nativeCheckInputs = with python3.pkgs; [
ipython
pytestCheckHook
] ++ lib.optionals (pythonOlder "3.11") [
] ++ lib.optionals (pythonOlder "3.12") [
greenlet
];