https://github.com/Radiomics/pyradiomics
Revision 218954ddee91cc2279fb3b7ee7f7593052ed24c7 authored by Joost van Griethuysen on 20 March 2017, 16:40:48 UTC, committed by Joost van Griethuysen on 20 March 2017, 17:21:48 UTC
When building the wheel, parameter schema file was not included in the install. Move these files to a new subdirectory of pyradiomics and include them as "package_data".
1 parent d9dd283
Raw File
Tip revision: 218954ddee91cc2279fb3b7ee7f7593052ed24c7 authored by Joost van Griethuysen on 20 March 2017, 16:40:48 UTC
BUG: Data_files not included in wheel distribution
Tip revision: 218954d
circle.yml

machine:
  services:
    - docker

dependencies:
  cache_directories:
    - ~/docker
  override:
    - curl -fsSL https://git.io/v2Ifs -o ~/bin/circleci-matrix
    - chmod +x ~/bin/circleci-matrix
    - pip install scikit-ci-addons==0.11.0
    - ci_addons docker load-pull-save dockcross/manylinux-x64
    - ci_addons docker load-pull-save dockcross/manylinux-x86

test:
  override:
     # Workaround https://github.com/pypa/setuptools/pull/971
     - (unlink venv > /dev/null 2>&1 && echo "symlink removed") || echo "no symlink"

     - circleci-matrix:
        parallel: true

back to top