-
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
Update meta.yaml #51670
Update meta.yaml #51670
Changes from all commits
53a804f
ae2648b
ed1cda7
63899c1
7d2945f
d7b9fde
dc796a5
1cf1c64
637c7e8
47691e5
e577c47
a145803
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 | ||||
---|---|---|---|---|---|---|
|
@@ -10,7 +10,7 @@ source: | |||||
sha256: 0ffe4da03ccc2aac77c17866033ce513f72a5ecdf9df108abbcdbfced438b04c | ||||||
|
||||||
build: | ||||||
number: 0 | ||||||
number: 1 | ||||||
noarch: python | ||||||
script: "{{ PYTHON }} -m pip install . --no-deps --no-build-isolation --no-cache-dir -vvv" | ||||||
entry_points: | ||||||
|
@@ -20,25 +20,22 @@ build: | |||||
|
||||||
requirements: | ||||||
host: | ||||||
- pip | ||||||
- python >=3.8 | ||||||
- setuptools | ||||||
run: | ||||||
- python >=3.8 | ||||||
- python >=3.10 | ||||||
- biopython >=1.84 | ||||||
- datasets >=3 | ||||||
- datasets >=3.0.2 | ||||||
- kcounter >=0.1.1 | ||||||
- fasttree >=2.1.11 | ||||||
- mafft >=7.525 | ||||||
- networkx >=3.4 | ||||||
- networkx >=3.4.2 | ||||||
- numpy >=1.26 | ||||||
- pandas >=2 | ||||||
- prodigal-gv >=2.11.0 | ||||||
- pyarrow >=16 | ||||||
- pytorch >=2.4 | ||||||
- scipy >=1.14 | ||||||
- pandas >=2.2.3 | ||||||
- pyarrow >=16.1.0 | ||||||
- pytorch >=2.4.0 | ||||||
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. Update package versions to available releases. Several specified package versions are not currently available in conda-forge:
Consider using these available versions: - - pytorch >=2.4.0
+ - pytorch >=2.1.0
- - transformers >=4.11.3
- - triton >=2.0.0
+ - transformers >=4.11.3,<5.0
+ - triton >=2.0.0,<3.0 Also applies to: 37-38 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. PyTorch 2.4.0 is not yet released. The specified PyTorch version 2.4.0 is a future version that hasn't been released yet. This will cause package installation failures. Use the latest stable version instead: - pytorch >=2.4.0
+ pytorch >=2.1.0 📝 Committable suggestion
Suggested change
|
||||||
- scipy >=1.14.1 | ||||||
- seaborn-base >=0.13.2 | ||||||
- transformers >=4 | ||||||
- transformers >=4.11.3 | ||||||
- triton >=2.0.0 | ||||||
|
||||||
test: | ||||||
commands: | ||||||
|
@@ -49,7 +46,7 @@ about: | |||||
license: "AFL-3.0" | ||||||
license_family: OTHER | ||||||
license_file: "LICENSE.md" | ||||||
summary: "Phage BOX is a Python library for phage-related tasks." | ||||||
summary: "PhaBOX is a Python library for virus-related tasks." | ||||||
dev_url: "https://github.com/KennthShang/PhaBOX" | ||||||
doc_url: "https://github.com/KennthShang/PhaBOX/wiki" | ||||||
|
||||||
|
@@ -59,3 +56,4 @@ extra: | |||||
identifiers: | ||||||
- doi:10.1093/bioadv/vbad101 | ||||||
- biotools:phabox | ||||||
|
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 Python version mismatch between host and run requirements.
The
host
section specifiespython >=3.8
while therun
section requirespython >=3.10
. This mismatch could cause build issues.