Skip to content

Commit

Permalink
Update post-release script
Browse files Browse the repository at this point in the history
  • Loading branch information
bjodah committed Sep 4, 2017
1 parent bb2836d commit 298bdd5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyodesys/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def integrate(self, x, y0, params=(), **kwargs):
when jacobian is derived at runtime (high computational cost).
force_predefined : bool (default: False)
override behaviour of ``len(x) == 2`` => :meth:`adaptive`
\*\*kwargs:
\\*\\*kwargs :
Additional keyword arguments for ``_integrate_$(integrator)``.
Returns
Expand Down
1 change: 1 addition & 0 deletions scripts/generate_docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ sphinx-apidoc --full --force -A "$AUTHOR" --module-first --doc-version=$(python
#sed -i 's/Contents/.. include:: ..\/README.rst\n\nContents/g' doc/index.rst
#echo ".. include:: ../README.rst" >>doc/index.rst
cat <<EOF >>doc/index.rst
Overview
========
$(tail -n+3 README.rst)
Expand Down
4 changes: 2 additions & 2 deletions scripts/post_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ sed -i -E \
# Specific for this project:
scp -r dist/conda-recipe-$VERSION/ $PKG@$SERVER:~/public_html/conda-recipes/
scp "$SDIST_FILE" "$PKG@$SERVER:~/public_html/releases/"
for CONDA_PY in 2.7 3.4 3.5; do
for CONDA_NPY in 1.11; do
for CONDA_PY in 2.7 3.5 3.6; do
for CONDA_NPY in 1.13; do
ssh $PKG@$SERVER "source /etc/profile; conda-build --python $CONDA_PY --numpy $CONDA_NPY ~/public_html/conda-recipes/conda-recipe-$VERSION/"
done
done

0 comments on commit 298bdd5

Please sign in to comment.