-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updating Neptune to v2.0.0 #52205
Updating Neptune to v2.0.0 #52205
Changes from 2 commits
d1796f5
6c27705
6686348
99c55f3
3028e57
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,23 +1,25 @@ | ||||||||||||||||||
package: | ||||||||||||||||||
name: neptune | ||||||||||||||||||
version: 1.2.5 | ||||||||||||||||||
name: neptune-signature | ||||||||||||||||||
version: 2.0.0 | ||||||||||||||||||
|
||||||||||||||||||
source: | ||||||||||||||||||
url: https://github.com/phac-nml/neptune/archive/v1.2.5.tar.gz | ||||||||||||||||||
md5: ed48846deffefe25784c9f8b7db2de6e | ||||||||||||||||||
url: https://github.com/phac-nml/neptune/archive/refs/tags/v2.0.0.tar.gz | ||||||||||||||||||
md5: 3fcce144d67c74c7921d3b9e36aedacb | ||||||||||||||||||
|
||||||||||||||||||
build: | ||||||||||||||||||
noarch: python | ||||||||||||||||||
number: 3 | ||||||||||||||||||
number: 0 | ||||||||||||||||||
script: {{ PYTHON }} -m pip install . --ignore-installed --no-deps -vv | ||||||||||||||||||
run_exports: | ||||||||||||||||||
- {{ pin_subpackage('neptune-signature', max_pin="x") }} | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix YAML syntax and verify run_exports configuration The run_exports section is a good addition for ABI compatibility, but there's a YAML syntax error in this section. Apply this fix to correct the YAML syntax: number: 0
script: {{ PYTHON }} -m pip install . --ignore-installed --no-deps -vv
run_exports:
- - {{ pin_subpackage('neptune-signature', max_pin="x") }}
+ - {{ pin_subpackage('neptune-signature', max_pin='x') }} 📝 Committable suggestion
Suggested change
🧰 Tools🪛 yamllint[error] 12-12: syntax error: expected , but found '' (syntax) |
||||||||||||||||||
|
||||||||||||||||||
requirements: | ||||||||||||||||||
host: | ||||||||||||||||||
- python <3 | ||||||||||||||||||
- python >=3.10 | ||||||||||||||||||
- pip | ||||||||||||||||||
- setuptools | ||||||||||||||||||
run: | ||||||||||||||||||
- python <3 | ||||||||||||||||||
- drmaa | ||||||||||||||||||
- python >=3.10 | ||||||||||||||||||
- numpy | ||||||||||||||||||
- scipy | ||||||||||||||||||
- biopython | ||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix YAML syntax error and verify run_exports configuration.
The
run_exports
section is correctly configured for ABI compatibility, but there's a YAML syntax error that needs to be fixed.Apply this diff to fix the indentation:
🧰 Tools
🪛 yamllint
[error] 12-12: syntax error: expected , but found ''
(syntax)