Skip to content

Commit

Permalink
Fix nextstrain-cli's cryptography dep
Browse files Browse the repository at this point in the history
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>.
  • Loading branch information
tsibley committed Dec 5, 2024
1 parent 3bfb53c commit ba1c329
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions recipes/nextstrain-cli/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ source:
sha256: 3aa6c66d038d82de0c3bff2eb1b358599a9efc3f5f446eb523d3c9696aa72854

build:
number: 0
number: 1
noarch: python
entry_points:
- nextstrain = nextstrain.cli.__main__:main
Expand All @@ -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
Expand Down

0 comments on commit ba1c329

Please sign in to comment.