Skip to content

Commit

Permalink
Update: arvados-cwl-runner, arvados-python-client; second py3k attempt (
Browse files Browse the repository at this point in the history
#13591)

Original noarch approach didn't work properly on py3k due to
subprocess32 conditional selector. It doesn't get applied on
noarch so will be a dependency and make it incompatible with py3.
Trying a new approach to restrict to avoid py37 errors.
  • Loading branch information
chapmanb authored Feb 13, 2019
1 parent 35dab66 commit 02880cd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions recipes/arvados-cwl-runner/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ source:
sha256: f0ac46a4d43a6fe62950a64a4c23b92392dd6a1a4b68c27dffdb2f20b602caf3

build:
noarch: python
number: 0
skip: true # [osx or py37]
number: 1

requirements:
host:
Expand All @@ -19,14 +19,14 @@ requirements:
- ruamel.yaml >=0.15.54
- cwltool >=1.0.20181217162649
- schema-salad >=3.0.20181129082112
- arvados-python-client >=1.2.1.20181130020805
- arvados-python-client >=1.2.1.20181130020805 # [not py37]

run:
- python <3.7
- ruamel.yaml >=0.15.54
- cwltool >=1.0.20181217162649
- schema-salad >=3.0.20181129082112
- arvados-python-client >=1.2.1.20181130020805
- arvados-python-client >=1.2.1.20181130020805 # [not py37]

test:
imports:
Expand Down
8 changes: 4 additions & 4 deletions recipes/arvados-python-client/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ source:
sha256: 0b81ee65973087e99a2aa8ac07aeea50877987faac6bdb254cc110bff9d74cff

build:
number: 0
noarch: python
skip: true # [osx or py37]
number: 1

requirements:
host:
# Supported ciso8601 versions do not have python 3.7 builds
- python <3.7
- setuptools
- ciso8601 >=1.0.6,<2.0.0
- ciso8601 >=1.0.6,<2.0.0 # [not py37]
- future
- google-api-python-client <1.7,>=1.6.2
- httplib2
Expand All @@ -29,7 +29,7 @@ requirements:
run:
- python <3.7
- setuptools
- ciso8601 >=1.0.6,<2.0.0
- ciso8601 >=1.0.6,<2.0.0 # [not py37]
- future
- google-api-python-client <1.7,>=1.6.2
- httplib2
Expand Down

0 comments on commit 02880cd

Please sign in to comment.