* Forcably load numpy as soon as possible so the required gcc library can get pulled in. This fixes the problem of not being able to find numpy at all. PR: 172366 Submitted by: woodsb02@ (0.99 version + numpy patch), Olivier Duchateau (earlier version), Greg V (0.999 update) Differential Revision: https://reviews.freebsd.org/D17042
10 lines
244 B
Python
10 lines
244 B
Python
--- pitivi/check.py.orig 2018-09-05 09:38:24 UTC
|
|
+++ pitivi/check.py
|
|
@@ -25,6 +25,7 @@ Package maintainers should look at the bottom section
|
|
"""
|
|
import os
|
|
import sys
|
|
+import numpy
|
|
from gettext import gettext as _
|
|
|
|
missing_soft_deps = {}
|