From 5fd0ef692de684c25f891cbb2fe406da1d84c589 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Montan=CC=83ana?= Date: Sat, 19 Jul 2025 23:21:09 +0200 Subject: [PATCH] Fix typo in conanfile --- conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conanfile.py b/conanfile.py index 5dfaf42..c9f6a79 100644 --- a/conanfile.py +++ b/conanfile.py @@ -12,7 +12,7 @@ class PlatformConan(ConanFile): # Sources are located in the same place as this recipe, copy them to the recipe exports_sources = "CMakeLists.txt", "src/*", "tests/*", "config/*", "cmake/*" - def requirements(conanself): + def requirements(self): # Core dependencies from vcpkg.json self.requires("argparse/3.2") self.requires("libtorch/2.7.1")