From 83fb88006b7c13b48bbbeea87cb87ad729cd98f1 Mon Sep 17 00:00:00 2001 From: Nicola Soranzo Date: Tue, 27 Feb 2024 11:00:08 +0000 Subject: [PATCH] Don't skip requirements with an environment marker Fix https://github.com/galaxyproject/planemo/issues/1432 . --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index e32d13620..c6887d07b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,5 +14,5 @@ oyaml pathvalidate pyyaml virtualenv -stdlib_list; python_version < '3.10' +stdlib-list; python_version < '3.10' tabulate diff --git a/setup.py b/setup.py index 7401ca058..ea4bd94a7 100644 --- a/setup.py +++ b/setup.py @@ -85,7 +85,7 @@ def get_var(var_name): if os.path.exists("requirements.txt"): with open("requirements.txt") as fh: - requirements = [r for r in fh.read().split("\n") if ";" not in r] + requirements = [r for r in fh.read().split("\n")] if not PLANEMO_REQUIRE_LXML: requirements.remove("lxml") else: