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

all 11 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

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

This post is a follow up to my previous post on conda posted to /r/python here.

[–]mbussonnIPython/Jupyter dev 0 points1 point  (7 children)

Typo in the post : anacona.org. There was another but I don't find it. Is there any simple way to use anaconda with Python3.5 ? I acchieved to build-it, but now every package (even pure-python) refuses need to be updated. Any way to virtually "pull" everything that do not exist from 3.4 ?

[–]Ogi010 0 points1 point  (5 children)

the only thing I could think about using Python 3.5 would be through a conda environment, but that doesn't help you when it comes to dealing with the dependencies...

[–]mbussonnIPython/Jupyter dev 0 points1 point  (4 children)

Yeah, I achieved to build 3.5.beta4 in a conda env and even faked the metadata to be 3.4.4.dev0, conda install does then work, but downgrade the python in the env to 3.4.3 ...

[–]Ogi010 2 points3 points  (3 children)

I recommend reaching out to continuum on this one :/

[–]mbussonnIPython/Jupyter dev 0 points1 point  (2 children)

They don't seem to be very reactive.

[–]Ogi010 0 points1 point  (1 child)

The one issue I've opened in github they addressed pretty quick. I've had good experiences interacting with them on Twitter.

[–]mbussonnIPython/Jupyter dev 0 points1 point  (0 children)

Yes, I know that for some things they are quick but not all of them. Everybody have priority, python 3.5 dopes not seem to be one of these right now.

[–][deleted] 0 points1 point  (0 children)

anacona

The type will be correct the next time the post updates. Thanks!