Skip to content

Commit

Permalink
Update to 5.7.1 (bioconda#46948)
Browse files Browse the repository at this point in the history
* Update to 5.7.1

* reset build number
  • Loading branch information
berkelem authored Apr 3, 2024
1 parent 0af5491 commit 8478f03
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 16 deletions.
14 changes: 1 addition & 13 deletions recipes/busco/0001-Set-conda-distribution.patch
Original file line number Diff line number Diff line change
@@ -1,18 +1,6 @@
--- a/src/busco/run_BUSCO.py
+++ b/src/busco/run_BUSCO.py
@@ -121,18 +121,12 @@ class BuscoMaster:
logger.debug("File upload failed. Status code: {}".format(response.status))

def get_dist_info(self):
- if ( # todo: fix
- "conda" in __file__
- and os.environ("CONDA_DEFAULT_ENV")
- and os.environ("CONDA_PREFIX")
- ):
- self.run_data["distribution"] = "conda"
- elif os.path.exists("/.dockerenv"):
+ if os.path.exists("/.dockerenv"):
self.run_data["distribution"] = "docker"
@@ -126,7 +126,7 @@ class BuscoMaster:
elif os.path.exists("/.singularity.d"):
self.run_data["distribution"] = "singularity"
else:
Expand Down
6 changes: 3 additions & 3 deletions recipes/busco/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{% set name = "busco" %}
{% set version = "5.7.0" %}
{% set sha256 = "dbd9e07a5fb42583bd6ddbbfe06c420d5317a6f3698e6f4be0f53baa6c3ccc5e" %}
{% set version = "5.7.1" %}
{% set sha256 = "d57066b68d533f0b86518653430ba47b748ef14db56d2a992601d3e26096cad6" %}

package:
name: busco
version: {{ version }}

build:
number: 1
number: 0
noarch: python
run_exports:
- {{ pin_subpackage(name, max_pin="x.x") }}
Expand Down

0 comments on commit 8478f03

Please sign in to comment.