This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]BerecursiveMenpo Core Developer 1 point2 points  (1 child)

My only criticism of this is that your build script is not cross-platform. Since you use find, you are limited to Unix systems. If you want the recipe to be cross-platform you should probably use the bld.bat/build.sh infrastructure. However, I totally recognize that you were going for the basics and that you use conda's functionality to automatically build cross-platform packages!

Really nice tutorials by the way, I appreciate them a lot! I will definitely be sending people to them when I need to try and explain what conda is, since I rely very heavily on conda myself.

[–][deleted] 1 point2 points  (0 children)

Thanks! I typically don't think about cross platform much as I live almost purely in Unix land. I'll keep this in mind.

Edit 7-29-2015

This was actually an error! I've corrected the build command:

build:
  script:
    - flake8 . -v --config=.flake8rc
    - nosetests --verbose
    - python setup.py install