Skip to content
This repository has been archived by the owner on Sep 11, 2023. It is now read-only.

Commit

Permalink
[conda-recipe] omit tag prefix in version number (#870)
Browse files Browse the repository at this point in the history
* [conda-recipe] omit tag prefix in version number

* [doc] fix ipython dl link [ci skip]
  • Loading branch information
marscher authored Jul 14, 2016
1 parent 0b6f5e9 commit 8d3105d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion devtools/conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package:
name: pyemma-dev
# version number: [base tag]+[commits-upstream]_[git_hash]
# eg. v2.0+0_g8824162
version: {{ GIT_DESCRIBE_TAG + '+' +GIT_BUILD_STR}}
version: {{ GIT_DESCRIBE_TAG[1:] + '+' +GIT_BUILD_STR}}
source:
path: ../..

Expand Down
2 changes: 1 addition & 1 deletion doc/source/ipython.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ the PyEMMA API in action and also describe the workflow of Markov model
building.

You can download a copy of all notebooks and most of the used data
`here <https://github.com/markovmodel/PyEMMA_IPython/archive/devel.zip>`_.
`here <https://github.com/markovmodel/PyEMMA_IPython/archive/master.zip>`_.
Note that the trajectory of the D.E. Shaw BPTI simulation trajectory is not included
in this archive, since we're not permitted to share this data. Thus the corresponding
notebooks can't be run without obtaining the simulation trajectory independently.
Expand Down

0 comments on commit 8d3105d

Please sign in to comment.