Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bioconda/bioconda-recipes
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: nextstrain/bioconda-recipes
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: nextstrain-cli-cryptography
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Dec 5, 2024

  1. Fix nextstrain-cli's cryptography dep

    It's being omitted from the rendered recipe due to the "[crypto]" in the
    trailing comment being treated as a preprocessing selector.  It seems
    the preprocessing selector matching is too loose and greedy!
    
    Resolves <nextstrain/cli#409>.
    tsibley committed Dec 5, 2024
    Copy the full SHA
    ba1c329 View commit details
Showing with 3 additions and 2 deletions.
  1. +3 −2 recipes/nextstrain-cli/meta.yaml
5 changes: 3 additions & 2 deletions recipes/nextstrain-cli/meta.yaml
Original file line number Diff line number Diff line change
@@ -9,7 +9,7 @@ source:
sha256: 3aa6c66d038d82de0c3bff2eb1b358599a9efc3f5f446eb523d3c9696aa72854

build:
number: 0
number: 1
noarch: python
entry_points:
- nextstrain = nextstrain.cli.__main__:main
@@ -29,7 +29,8 @@ requirements:
- importlib_resources >=5.3.0 # [py<311]
- packaging >=3.0.0
- pyjwt >=2.0.0
- cryptography # Required for pyjwt digital signature support. Replicates "pip install pyjwt[crypto]".
# Required for pyjwt digital signature support. Replicates "pip install pyjwt[crypto]".
- cryptography
- pyparsing
- requests
- typing_extensions >=3.6.4