Skip to content

Commit

Permalink
Fix version for wbuild (#108)
Browse files Browse the repository at this point in the history
Co-authored-by: mumichae <mi.mueller@tum.de>
  • Loading branch information
mumichae and mumichae committed Sep 24, 2020
1 parent 966da08 commit 3034445
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ install:

# test package
- source $HOME/miniconda/etc/profile.d/conda.sh
- conda create -q -n drop drop
- conda create -q -n drop drop_travis
- conda activate drop

script:
Expand Down
11 changes: 4 additions & 7 deletions conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
{% set name = "drop" %}
{% set version = "0.9.1" %}

package:
name: "{{ name|lower }}"
version: "{{ version }}"
name: "drop_travis"
version: "0.9.2"

source:
path: ..
Expand All @@ -19,7 +16,7 @@ requirements:
host:
- python >=3.6
- pip
- wbuild >=1.7.0
- wbuild =1.7.0

run:
- python >=3.6
Expand All @@ -30,7 +27,7 @@ requirements:

# snakemake/wbuild
- snakemake >=5.5.2
- wbuild >=1.7.0
- wbuild =1.7.0
- pandoc
- graphviz

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = 'Michaela Müller'

# The full version, including alpha/beta/rc tags
release = '0.9.1'
release = '0.9.2'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
long_description = fh.read()

requirements = [
'wbuild>=1.7.0',
'wbuild==1.7.0',
'python-dateutil',
'pandoc',
'graphviz',
Expand All @@ -23,7 +23,7 @@

setuptools.setup(
name="drop",
version="0.9.1",
version="0.9.2",
author="Michaela Müller, Daniela Andrade Salazar, Vicente Yepez",
author_email="mumichae@in.tum.de",
description="Detection of RNA Outlier Pipeline",
Expand Down

0 comments on commit 3034445

Please sign in to comment.