From 7033fdb6bab71e3a72b5d9aa00054e21fd645633 Mon Sep 17 00:00:00 2001 From: MrARM <8205849+MrARM@users.noreply.github.com> Date: Sat, 23 Mar 2024 23:36:34 -0500 Subject: [PATCH] Remove msgpack from pyproject This will allow me to build on a no-native code environment, but it will break udp communications for those who need it. --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ad59469da..5c15adbdc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,6 @@ dependencies = [ "wrapt~=1.10", "packaging >= 23.1", "typing_extensions>=3.10.0.0", - "msgpack~=1.0.0; platform_system != 'Windows'", "pywin32>=305; platform_system == 'Windows' and platform_python_implementation == 'CPython'", ] requires-python = ">=3.8"