From 115316fedbd26a96b1368ea15d7cad732a2dee11 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Thu, 4 Apr 2024 12:31:39 +0200 Subject: [PATCH] python: Require linuxfd dependency only on Linux platforms Signed-off-by: Steffen Vogel --- python/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyproject.toml b/python/pyproject.toml index 360221d0e..db083505b 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -21,7 +21,7 @@ classifiers = [ 'Programming Language :: Python :: 3', ] dependencies = [ - 'linuxfd==1.5', + 'linuxfd==1.5; platform_system=="Linux"', 'requests==2.31.0', 'protobuf==4.24.4', ]