Skip to content

Commit

Permalink
Merge pull request #19382 from nsoranzo/release_24.0_pkg_spec_quoting
Browse files Browse the repository at this point in the history
[24.0] Remove unnecessary quoting in conda package specification
  • Loading branch information
jmchilton authored Jan 7, 2025
2 parents 0d4ec88 + f3e4a16 commit 7fd1b6a
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 7fd1b6a

Please sign in to comment.