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]>
  • Loading branch information
dependabot[bot] authored and mr-c committed Jul 20, 2023
1 parent 1573509 commit 2f0105b
Show file tree
Hide file tree
Showing 5 changed files with 7 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 @@ -156,7 +156,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
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ requires = [
"ruamel.yaml>=0.16.0,<0.18",
"schema-salad>=8.2.20211104054942,<9",
"cwl-utils >=0.19",
'toml',
"galaxy-tool-util >= 22.1.2, < 24",
"toml",
]
build-backend = "setuptools.build_meta"

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,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.6, <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 @@ -8,5 +8,5 @@ pytest-cov
arcp>=0.2.0
rdflib-jsonld>=0.4.0,<= 0.6.1;python_version<='3.6'
-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 2f0105b

Please sign in to comment.