-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1e658b9
commit a4a2134
Showing
1 changed file
with
9 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,16 @@ | ||
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 == "9b43a43ee96198674060c6b9591e515e2d27c28f" | ||
assert Qt5Recipe.depends == ['python3'] | ||
assert Qt5Recipe.python_depends == [] | ||
|
||
recipe = Qt5Recipe() | ||
class Qt5RecipePinned(util.InheritedRecipeMixin, Qt5Recipe): | ||
pass | ||
|
||
recipe = Qt5RecipePinned() |