Skip to content

Commit

Permalink
Remove unnecessary quoting in conda package specification
Browse files Browse the repository at this point in the history
Fix the following error in:
- test/unit/tool_util/test_conda_resolution.py::test_install_conda_build
- test/integration/test_resolvers.py::TestCondaResolutionIntegration::test_dependency_install
- test/integration/test_resolvers.py::TestCondaResolutionIntegration::test_uninstall_through_tools_api

```
InvalidMatchSpec: Invalid spec ''pyopenssl>=22.1.0'': Invalid version '22.1.0'': invalid character(s)
```
  • Loading branch information
nsoranzo committed Jan 7, 2025
1 parent 0d4ec88 commit f3e4a16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/tool_util/deps/conda_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
VERSIONED_ENV_DIR_NAME = re.compile(r"__(.*)@(.*)")
UNVERSIONED_ENV_DIR_NAME = re.compile(r"__(.*)@_uv_")
USE_PATH_EXEC_DEFAULT = False
CONDA_PACKAGE_SPECS = ("conda>=23.7.0", "conda-libmamba-solver", "'pyopenssl>=22.1.0'")
CONDA_PACKAGE_SPECS = ("conda>=23.7.0", "conda-libmamba-solver", "pyopenssl>=22.1.0")
CONDA_BUILD_SPECS = ("conda-build>=3.22.0",)
USE_LOCAL_DEFAULT = False

Expand Down

0 comments on commit f3e4a16

Please sign in to comment.