ioos / system-test

IOOS DMAC System Integration Test project
github.com/ioos/system-test/wiki
The Unlicense
7 stars 14 forks source link

Copy binstar packages from rsignell to ioos #196

Closed rsignell-usgs closed 9 years ago

rsignell-usgs commented 9 years ago

It's silly to have the ioos system-test binstar packages at rsignell instead of at ioos. @srossross, can you please copy everything from binstar/rsignell to binstar/ioos?

srossross commented 9 years ago

At this point in time it is only possible to move that many packages, rather than copy. This could cause potential service disruptions for people using your binstar/rsignell channel? Do you want me to go ahead and move the packages?

rsignell-usgs commented 9 years ago

Hmmm. I guess not. I could write a script to do the copying, I guess?

On Wednesday, October 29, 2014, Sean notifications@github.com wrote:

At this point in time it is only possible to move that many packages, rather than copy. This could cause potential service disruptions for people using your binstar/rsignell channel? Do you want me to go ahead and move the packages?

— Reply to this email directly or view it on GitHub https://github.com/ioos/system-test/issues/196#issuecomment-60977788.

Dr. Richard P. Signell (508) 457-2229 USGS, 384 Woods Hole Rd. Woods Hole, MA 02543-1598

jkupiec commented 9 years ago

Rich, is this issue okay to close, or is there still work to be done?

rsignell-usgs commented 9 years ago

No, this hasn't been done. It would be great to have the IOOS binstar channel instead of rsignell, but I haven't written a script to copy everything over yet.

ocefpaf commented 9 years ago

@jkupiec Rich and I implement a system using travis-ci and AppVeyor that builds and uploads the packages in IOOS/conda-recipes. The builds are working for Linux and windows, MacOS will be available soon.

PRs to https://github.com/ioos/conda-recipes will trigger a new build, but the upload only occurs when the PR is merged. The packages are hosted in the IOOS binstar channel,

https://binstar.org/IOOS/

I just tested the following commands (on Linux):

conda config --add channels ioos -f 

cat >req.txt <<EOL
iris
pyoos
pandas
folium
rdflib
geojson
requests
prettyplotlib
ipython-notebook
libnetcdf=4.2.1.1=1 
EOL

ENV_NAME=system-test
conda create --yes -n $ENV_NAME --file req.txt python=2.7
source activate system-test

This creates a conda virtual environment that is able to run all the notebooks in system-test.

PS: Make sure that ioos is the only channel in your .condarc, or other package version might get installed.