Skip to content

Commit 56913e7

Browse files
committed
Revert "Update galaxy-tool-util requirement from <23,>=22.1.2 to >=22.1.2,<24"
This reverts commit 9144a78.
1 parent ec9c898 commit 56913e7

File tree

6 files changed

+6
-8
lines changed

6 files changed

+6
-8
lines changed

cwltool/software_requirements.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def get_container_from_software_requirements(
158158
[DOCKER_CONTAINER_TYPE], tool_info
159159
)
160160
if container_description:
161-
return container_description.identifier
161+
return cast(Optional[str], container_description.identifier)
162162

163163
return None
164164

mypy-requirements.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,3 @@ types-requests
55
types-setuptools
66
types-psutil
77
types-mock
8-
galaxy-tool-util>=22.1.2,<24
9-
galaxy-util<24

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ requires = [
88
"importlib_resources>=1.4", # equivalent to Python 3.9
99
"ruamel.yaml>=0.16.0,<0.18",
1010
"schema-salad>=8.4.20230426093816,<9",
11+
"packaging<22",
1112
"cwl-utils>=0.19",
12-
"galaxy-tool-util >= 22.1.2, < 24",
1313
"toml",
1414
"argcomplete>=1.12.0",
1515
]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
"cwl-utils >= 0.22",
118118
],
119119
extras_require={
120-
"deps": ["galaxy-tool-util >= 22.1.2, <24", "galaxy-util <24"],
120+
"deps": ["galaxy-tool-util >= 22.1.2, <23", "galaxy-util <23"],
121121
},
122122
python_requires=">=3.8, <4",
123123
use_scm_version=True,

test-requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ pytest-mock>=1.10.0
77
pytest-cov
88
arcp>=0.2.0
99
-rrequirements.txt
10-
galaxy-tool-util>=22.1.2,<24
11-
galaxy-util<24
10+
galaxy-tool-util>=22.1.2,<23
11+
galaxy-util<23

tests/test_dependencies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
deps: Optional[ModuleType] = None
1919
try:
20-
from galaxy.tool_util import deps
20+
from galaxy.tool_util import deps # type: ignore[no-redef]
2121
except ImportError:
2222
pass
2323

0 commit comments

Comments
 (0)