From 9ef28a275fe5f23e94d1f48ddd5b59cf51125e91 Mon Sep 17 00:00:00 2001 From: Gonzalo Casas Date: Thu, 11 Jan 2024 00:10:15 +0100 Subject: [PATCH] `watchdog` only required for platforms other than `emscripten` to support pyodide --- CHANGELOG.md | 1 + requirements.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd9826163a71..322410abf714 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -55,6 +55,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Changed `compas.datastructures.Mesh` to take additional `**kwargs`, instead of only `name=None` specifically. * Moved registration of `ping` and `remote_shutdown` of the RPC server to `compas.rpc.Server.__init__()`. * Moved `FileWatcherService` to `compas.rpc.services.watcher` so it can be reused. +* Changed `watchdog` dependency to be only required for platforms other than `emscripten`. ### Removed diff --git a/requirements.txt b/requirements.txt index 113566335b79..a465e191cc28 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,4 +4,4 @@ networkx >= 3.0 numpy >= 1.15.4 scipy >= 1.1 typing_extensions -watchdog +watchdog; sys_platform != 'emscripten'