Skip to content

Commit

Permalink
Fixed version
Browse files Browse the repository at this point in the history
Updated meta.yaml
  • Loading branch information
iquasere committed Dec 27, 2023
1 parent dce95b9 commit d529029
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions cicd/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{% set name = "keggcharter" %}
{% set version = "0.7.0" %}
{% set sha256 = "8e79e92eef943d0b7cfbd035b4d3d9ef5f6f51a6f4d43f8d58989fd849625696" %}
{% set version = "1.0.2" %}
{% set sha256 = "605795641af04a7045cc92b6f37ee0b0c0b8e508b85fb70bcc6c00234b9d5d89" %}

package:
name: {{ name|lower }}
Expand All @@ -13,14 +13,14 @@ source:
build:
noarch: generic
number: 0
run_exports:
- {{ pin_subpackage(name, max_pin="x.x") }}
script: >
mkdir -p $PREFIX/bin &&
mkdir -p $PREFIX/share &&
cp *.py resources/KEGGCharter_prokaryotic_maps.txt resources/cog2ko_keggcharter.tsv $PREFIX/share &&
mkdir -p $PREFIX/bin &&
mkdir -p $PREFIX/share &&
cp *.py resources/*.txt resources/*.tsv $PREFIX/share &&
chmod +x $PREFIX/share/keggcharter.py &&
ln -s $PREFIX/share/keggcharter.py $PREFIX/bin/keggcharter
run_exports:
- {{ pin_subpackage("keggcharter", max_pin="x.x") }}

requirements:
run:
Expand All @@ -32,8 +32,8 @@ requirements:
- openpyxl
- poppler
- mscorefonts
- lxml
- requests
- lxml

test:
commands:
Expand Down
2 changes: 1 addition & 1 deletion keggcharter.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from lxml import html
from keggpathway_map import KEGGPathwayMap, expand_by_list_column

__version__ = "1.0.1"
__version__ = "1.0.3"


def get_arguments():
Expand Down

0 comments on commit d529029

Please sign in to comment.