From f642d01e41fe3e90f480292ffcfb69cbb82ae515 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Tue, 14 Nov 2023 18:37:46 +0800 Subject: [PATCH] Revert "python311Packages.pyuavcan: add deprecation warning" This reverts commit 7b13a350aa11dac70b962db34e3ddd2e110d2e6a. ofborg-eval is now failing on every PR with: nix-env did not evaluate cleanly: ["trace: warning: pyuavcan is deprecated and will be removed in 24.05; use pycyphal instead",...] Since CI is also failing in the original PR, let's revert for now. --- pkgs/development/python-modules/pyuavcan/default.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/development/python-modules/pyuavcan/default.nix b/pkgs/development/python-modules/pyuavcan/default.nix index 718dc578078e..f5152f8e9bf2 100644 --- a/pkgs/development/python-modules/pyuavcan/default.nix +++ b/pkgs/development/python-modules/pyuavcan/default.nix @@ -1,10 +1,6 @@ { lib, buildPythonPackage, fetchFromGitHub, pythonOlder, numpy, nunavut , pyserial , pytest, ruamel-yaml}: -# This has been renamed pycyphal, without any API changes; though this package is -# quite outdated so transition might not be as seemless as it could be -# See https://uavcan.org/ (which will redirect to https://opencyphal.org/) -lib.warn "pyuavcan is deprecated and will be removed in 24.05; use pycyphal instead" buildPythonPackage rec { pname = "pyuavcan"; version = "1.1.0.dev1";