You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
456 B
16 lines
456 B
import os |
|
|
|
from pythonforandroid.recipes.qt5 import Qt5Recipe |
|
|
|
from pythonforandroid.util import load_source |
|
|
|
util = load_source('util', os.path.join(os.path.dirname(os.path.dirname(__file__)), 'util.py')) |
|
|
|
assert Qt5Recipe._version == "95254e52c658729e80f741324045034c15ce9cb0" |
|
assert Qt5Recipe.depends == ['python3'] |
|
assert Qt5Recipe.python_depends == [] |
|
|
|
class Qt5RecipePinned(util.InheritedRecipeMixin, Qt5Recipe): |
|
pass |
|
|
|
recipe = Qt5RecipePinned()
|
|
|