From owner-freebsd-python@freebsd.org Mon Jan 8 19:29:29 2018 Return-Path: Delivered-To: freebsd-python@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8C6EAE5B816 for ; Mon, 8 Jan 2018 19:29:29 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from shell1.rawbw.com (shell1.rawbw.com [198.144.192.42]) by mx1.freebsd.org (Postfix) with ESMTP id 653646F663 for ; Mon, 8 Jan 2018 19:29:29 +0000 (UTC) (envelope-from yuri@rawbw.com) Received: from yv.noip.me (c-24-6-186-56.hsd1.ca.comcast.net [24.6.186.56]) (authenticated bits=0) by shell1.rawbw.com (8.15.1/8.15.1) with ESMTPSA id w08JTNw6026368 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128 verify=NO) for ; Mon, 8 Jan 2018 11:29:23 -0800 (PST) (envelope-from yuri@rawbw.com) X-Authentication-Warning: shell1.rawbw.com: Host c-24-6-186-56.hsd1.ca.comcast.net [24.6.186.56] claimed to be yv.noip.me To: freebsd-python@freebsd.org From: Yuri Subject: Why does 'import PyQt5.QtCore` require py-sip in runtime? Message-ID: <3c851be8-f901-f6de-80e7-455d0778a898@rawbw.com> Date: Mon, 8 Jan 2018 11:29:22 -0800 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.5.2 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jan 2018 19:29:29 -0000 This import fails in python36 w/out py36-sip installed: Traceback (most recent call last):   File "x.py", line 5, in     import PyQt5.QtCore ModuleNotFoundError: No module named 'sip' py-sip description red like it should be required in the runtime. But if it is always required for PyQt5.QtCore, why isn't it automatically included then? Yuri