From 8689a16f3d5a884575cf9c2f343c8c7b51731ce5 Mon Sep 17 00:00:00 2001 From: tzutalin Date: Sat, 25 May 2019 14:14:49 -0700 Subject: [PATCH] By default, use py3 qt5 to build --- Makefile | 4 ++-- libs/stringBundle.py | 1 - tests/test_stringBundle.py | 1 + 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 346bb025..303af1c8 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ # ex: set ts=8 noet: -all: qt4 +all: qt5 -test: testpy2 +test: testpy3 testpy2: python -m unittest discover tests diff --git a/libs/stringBundle.py b/libs/stringBundle.py index aa99bc99..a84f169b 100644 --- a/libs/stringBundle.py +++ b/libs/stringBundle.py @@ -1,7 +1,6 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- import re -import resources import os import sys import locale diff --git a/tests/test_stringBundle.py b/tests/test_stringBundle.py index c67af137..d4eb7f26 100644 --- a/tests/test_stringBundle.py +++ b/tests/test_stringBundle.py @@ -1,6 +1,7 @@ import os import sys import unittest +import resources from stringBundle import StringBundle class TestStringBundle(unittest.TestCase):