Allow building Mycroft with loose requirements

pull/2562/head
Åke Forslund 2020-05-04 09:28:48 +02:00
parent c89a8f63ad
commit 466d39fd40
1 changed files with 4 additions and 0 deletions

View File

@ -13,6 +13,7 @@
# limitations under the License.
#
from setuptools import setup, find_packages
import os
import os.path
BASEDIR = os.path.abspath(os.path.dirname(__file__))
@ -44,6 +45,9 @@ def required(requirements_file):
""" Read requirements file and remove comments and empty lines. """
with open(os.path.join(BASEDIR, requirements_file), 'r') as f:
requirements = f.read().splitlines()
if 'MYCROFT_LOOSE_REQUIREMENTS' in os.environ:
print('USING LOOSE REQUIREMENTS!')
requirements = [r.replace('==', '>=') for r in requirements]
return [pkg for pkg in requirements
if pkg.strip() and not pkg.startswith("#")]