From eabc56ec17ca37a68ad8dc237e9cb953b78218aa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Jun 2021 00:37:14 +0000 Subject: [PATCH] Update schema-salad requirement Updates the requirements on [schema-salad](https://github.com/common-workflow-language/schema_salad) to permit the latest version. - [Release notes](https://github.com/common-workflow-language/schema_salad/releases) - [Commits](https://github.com/common-workflow-language/schema_salad/compare/5.0.20200220195218...8.0.20210624154013) --- updated-dependencies: - dependency-name: schema-salad dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) mode change 100755 => 100644 setup.py diff --git a/requirements.txt b/requirements.txt index cf1e778..de7919c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -schema-salad >= 5.0.20200220195218, <8 +schema-salad >= 5.0.20200220195218, < 9 junit-xml >= 1.8 pytest < 7 diff --git a/setup.py b/setup.py old mode 100755 new mode 100644 index 26a4a1d..a98125b --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ except ImportError: tagger = egg_info_cmd.egg_info -install_requires = ["schema-salad >= 5.0.20200220195218, < 8", "junit-xml >= 1.8"] +install_requires = ["schema-salad >= 5.0.20200220195218, < 9", "junit-xml >= 1.8"] needs_pytest = {"pytest", "test", "ptr"}.intersection(sys.argv) pytest_runner = ["pytest < 6", "pytest-runner < 5"] if needs_pytest else []