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

Update cwltest to 1.0.20190228134645 #15889

Merged
merged 5 commits into from
Aug 29, 2019
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions recipes/cwltest/build.sh

This file was deleted.

48 changes: 23 additions & 25 deletions recipes/cwltest/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,46 +1,44 @@
{% set version = "1.0.20180601100346" %}
{% set name = "cwltest" %}
{% set version = "1.0.20190228134645" %}

package:
name: cwltest
version: {{ version }}
name: "{{ name|lower }}"
version: "{{ version }}"

source:
url: https://pypi.io/packages/source/c/cwltest/cwltest-{{ version }}.tar.gz
sha256: 4308dff9c63a223e9630ab359016bab48047c0701f98aed7daf3ac09a4939f66

url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz"
sha256: "317a917d0ed18e5db9dab1069f32222625e350b35d53f36b5b7430538006eadb"
patches:
- patch

build:
noarch: python
number: 0
noarch: python
entry_points:
- cwltest=cwltest:main
- mock-cwl-runner=cwltest.tests.mock_cwl_runner:main
script: "{{ PYTHON }} -m pip install . --no-deps --ignore-installed -vv "

requirements:
host:
- pip
- python
- setuptools
- schema-salad >=1.14
- typing >=3.5.3,<3.6
- junit-xml >=1.8
- futures >=3.0.5 # [py27]
- subprocess32 >=3.5.0 # [py27]
- cachecontrol <0.12,>=0.11.7
- mistune <0.8,>=0.7.3

run:
- junit-xml >=1.8
- python
- schema-salad >=1.14
- typing >=3.5.3,<3.6
- junit-xml >=1.8
- futures >=3.0.5 # [py27]
- subprocess32 >=3.5.0 # [py27]
- cachecontrol <0.12,>=0.11.7
- mistune <0.8,>=0.7.3
- six >=1.10.0

test:
imports:
- cwltest
- cwltest.tests
commands:
- cwltest --help
- mock-cwl-runner --help

about:
home: https://github.com/common-workflow-language/cwltest
license: Apache License 2.0
summary: Framework for testing CWL tools and workflows
home: "https://github.com/common-workflow-language/cwltest"
license: "Apache 2.0"
license_family: "APACHE"
summary: "Common workflow language testing framework"
11 changes: 11 additions & 0 deletions recipes/cwltest/patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
--- setup.py 2019-08-30 00:44:12.985497631 +0200
+++ setup.py 2019-08-30 00:44:36.241596595 +0200
@@ -36,7 +36,7 @@
download_url="https://github.com/common-workflow-language/cwltest",
license='Apache 2.0',
packages=["cwltest", "cwltest.tests"],
- package_data={'cwltest.tests': 'test-data/*'},
+ package_data={'cwltest.tests': ['test-data/*']},
include_package_data=True,
install_requires=install_requires,
test_suite='tests',