Skip to content

Commit

Permalink
Added conda to the release cycle with directory cleaning. Should solv…
Browse files Browse the repository at this point in the history
…e the problems discussed in #956, #905 and #707, but we have to wait for the next nightly build to see if it really works. Remember that the upload token on the server expires in June and uploads will fail silently.
  • Loading branch information
jowr committed Feb 16, 2016
1 parent 54b8b89 commit 8c5b3b7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
8 changes: 8 additions & 0 deletions Web/coolprop/wrappers/Python/index.rst
Expand Up @@ -17,6 +17,14 @@ If you dare, you can also try the latest nightly release from :sfnightly:`Python
or get it directly from the development server using::

pip install -vvv --pre --trusted-host www.coolprop.dreamhosters.com --find-links http://www.coolprop.dreamhosters.com/binaries/Python/ -U --force-reinstall CoolProp
For those of you who prefer the Anaconda or Miniconda distributions, you can run::

conda install -c https://conda.binstar.org/coolprop coolprop
You can also find our nightly development snapshots on binstar::
conda install -c https://conda.binstar.org/coolprop/label/dev coolprop


Manual installation
Expand Down
7 changes: 5 additions & 2 deletions dev/scripts/release.bsh
Expand Up @@ -164,8 +164,11 @@ fi
#
if [[ ("$BINFOLDER" == "release") && ("$DRYRUN" == "false") ]]; then
printMessage "Removing release directory"
rm -rf "$BINFOLDER"
mkdir -p "$BINFOLDER"
rm -rf "release"
mkdir -p "release"
printMessage "Removing binaries directory to clean the nightly builds"
rm -rf "binaries"
mkdir -p "binaries"
fi
popd
printMessage "All done, goodbye."
Expand Down

0 comments on commit 8c5b3b7

Please sign in to comment.