Skip to content

Commit

Permalink
Update galaxy-tool-util requirement from <23,>=22.1.2 to >=22.1.2,<24
Browse files Browse the repository at this point in the history
Updates the requirements on [galaxy-tool-util](https://github.com/galaxyproject/galaxy) to permit the latest version.
- [Release notes](https://github.com/galaxyproject/galaxy/releases)
- [Commits](galaxyproject/galaxy@galaxy-tool-util-22.1.3...v23.0.1)

---
updated-dependencies:
- dependency-name: galaxy-tool-util
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: Michael R. Crusoe <[email protected]>
  • Loading branch information
dependabot[bot] and mr-c committed Oct 12, 2023
1 parent bab56aa commit 9144a78
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion cwltool/software_requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def get_container_from_software_requirements(
[DOCKER_CONTAINER_TYPE], tool_info
)
if container_description:
return cast(Optional[str], container_description.identifier)
return container_description.identifier

return None

Expand Down
2 changes: 2 additions & 0 deletions mypy-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ types-requests
types-setuptools
types-psutil
types-mock
galaxy-tool-util>=22.1.2,<24
galaxy-util<24
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ requires = [
"importlib_resources>=1.4", # equivalent to Python 3.9
"ruamel.yaml>=0.16.0,<0.18",
"schema-salad>=8.4.20230426093816,<9",
"packaging<22",
"cwl-utils>=0.19",
"galaxy-tool-util >= 22.1.2, < 24",
"toml",
"argcomplete>=1.12.0",
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
"cwl-utils >= 0.22",
],
extras_require={
"deps": ["galaxy-tool-util >= 22.1.2, <23", "galaxy-util <23"],
"deps": ["galaxy-tool-util >= 22.1.2, <24", "galaxy-util <24"],
},
python_requires=">=3.8, <4",
setup_requires=PYTEST_RUNNER,
Expand Down
4 changes: 2 additions & 2 deletions test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ pytest-mock>=1.10.0
pytest-cov
arcp>=0.2.0
-rrequirements.txt
galaxy-tool-util>=22.1.2,<23
galaxy-util<23
galaxy-tool-util>=22.1.2,<24
galaxy-util<24
2 changes: 1 addition & 1 deletion tests/test_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

deps: Optional[ModuleType] = None
try:
from galaxy.tool_util import deps # type: ignore[no-redef]
from galaxy.tool_util import deps
except ImportError:
pass

Expand Down

0 comments on commit 9144a78

Please sign in to comment.