Merge pull request #310825 from GaetanLepage/dask-jobqueue

python312Packages.dask-jobqueue: disable for python 3.12
This commit is contained in:
Nick Cao 2024-05-11 09:50:02 -04:00 committed by GitHub
commit 3b1eb0fab8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,6 +8,7 @@
, fetchPypi
, pytest-asyncio
, pytestCheckHook
, pythonAtLeast
, pythonOlder
}:
@ -16,7 +17,8 @@ buildPythonPackage rec {
version = "0.8.5";
format = "setuptools";
disabled = pythonOlder "3.8";
# Python 3.12 support should be added in 0.8.6
disabled = pythonOlder "3.8" || pythonAtLeast "3.12";
src = fetchPypi {
inherit pname version;