mirror of
https://git.freebsd.org/ports.git
synced 2025-06-11 15:50:33 -04:00
While here, patch pip3 warnings, which we don't use because we are a package and we don't do things like that. PR: 248255 Submitted by: Alexander Moisseev <moiseev@mezonplus.ru>
15 lines
563 B
PHP
15 lines
563 B
PHP
--- LibreNMS/Validations/Python.php.orig 2020-07-10 19:56:16 UTC
|
|
+++ LibreNMS/Validations/Python.php
|
|
@@ -50,8 +50,10 @@ class Python extends BaseValidation
|
|
}
|
|
|
|
$this->checkVersion($validator, $version);
|
|
- $this->checkPipVersion($validator, $version);
|
|
- $this->checkExtensions($validator);
|
|
+# We've installed from a FreeBSD package.
|
|
+# We aren't using pip
|
|
+# $this->checkPipVersion($validator, $version);
|
|
+# $this->checkExtensions($validator);
|
|
}
|
|
|
|
private function checkVersion(Validator $validator, $version)
|