Skip to content

Commit 857948c

Browse files
committed
Update requirements of sort1 tool
Otherwise the conda environment for it fails to solve with the following error: ``` Solving environment: failed LibMambaUnsatisfiableError: Encountered problems while solving: - package grep-2.14-h470a237_2 is excluded by strict repo priority ``` This is due to the fact that grep 2.14 is only available on the bioconda channel, while newer versions are on conda-forge, which has a higher priority. Reported by @mvdbeek in https://github.com/galaxyproject/galaxy/pull/20876/files#r2336209775 .
1 parent 12f81e9 commit 857948c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/filters/sorter.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<tool id="sort1" name="Sort" version="1.2.0">
22
<description>data in ascending or descending order</description>
33
<requirements>
4-
<requirement type="package" version="2.14">grep</requirement>
5-
<requirement type="package" version="4.4">sed</requirement>
6-
<requirement type="package" version="8.31">coreutils</requirement>
4+
<requirement type="package" version="3.11">grep</requirement>
5+
<requirement type="package" version="4.9">sed</requirement>
6+
<requirement type="package" version="9.5">coreutils</requirement>
77
</requirements>
88
<command detect_errors="exit_code"><![CDATA[
99
## Sorts tabular data on one or more columns. All comments of the file are

0 commit comments

Comments
 (0)