Skip to content
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

Make snakemake a noarch package. #12274

Merged
merged 2 commits into from
Nov 21, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
18 changes: 6 additions & 12 deletions recipes/snakemake-minimal/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,27 @@

package:
name: snakemake-minimal
version: {{ version }}
version: "5.3.0"

source:
url: https://pypi.io/packages/source/s/snakemake/snakemake-{{ version }}.tar.gz
url: https://pypi.io/packages/source/s/snakemake/snakemake-{{ PKG_VERSION }}.tar.gz
sha256: 612a16f2bba580c47183e4f752ed40b034852541ca3e96e480d01fb30ad9570c

build:
number: 1
skip: True # [py27]
number: 2
noarch: python
script: python -m pip install --no-deps --ignore-installed .
entry_points:
- snakemake = snakemake:main
- snakemake-bash-completion = snakemake:bash_completion

requirements:
host:
johanneskoester marked this conversation as resolved.
Show resolved Hide resolved
- python
- python >=3.5
- pip
- setuptools
- wrapt
- requests
- ratelimiter
- configargparse
- appdirs
- datrie
run:
johanneskoester marked this conversation as resolved.
Show resolved Hide resolved
- python
- python >=3.5
- setuptools
- wrapt
- requests
Expand Down
14 changes: 4 additions & 10 deletions recipes/snakemake/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,15 @@

package:
name: snakemake
version: {{ version }}
version: "5.3.0"

build:
number: 1
skip: True # [py27]
number: 2
noarch: generic

requirements:
host:
- python
run:
- python
- snakemake-minimal ={{ version }}
- snakemake-minimal ={{ PKG_VERSION }}
# optional dependencies needed for the full experience
# require this dropbox version to ensure that a conda doesn't pick up the
# outdated version available
Expand All @@ -25,12 +22,9 @@ requirements:
- aioeasywebdav
# pandas is optional, but required for many workflows
- pandas
- ratelimiter
- configargparse
- python-irodsclient
- google-cloud-storage
- boto3
- aioeasywebdav
- jsonschema
- jinja2
- pygraphviz
Expand Down