Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
docs: Mention required openssl dep for rust-script (#1216)
* docs: Add OpenSSL, C compiler deps for rust-script OpenSSL is added indirectly via dependencies pulled in from the json_typegen=0.7 Crate. The compilation needs OpenSSL sources from the conda-forge::openssl package and a C compiler that uses the Conda prefix's path to look for headers/libraries which is provided via conda-forge::c-compiler. * chore: Fix test_conda: check python<3.10 output Help text output changed with Python 3.10 due to renamed optionals group; ref: https://github.com/python/cpython/pull/23858/files
- Loading branch information
Showing
3 changed files
with
12 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ channels: | |
- conda-forge | ||
dependencies: | ||
- melt ==1.0.3 | ||
- python <3.10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,6 @@ channels: | |
- bioconda | ||
dependencies: | ||
- rust-script>=0.15.0 | ||
- openssl | ||
- c-compiler | ||
- pkg-config |