Skip to content

Commit

Permalink
update changelog and installation instructions to clone with --depth 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Böck committed Mar 9, 2016
1 parent 65b28b9 commit fce5473
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Release Notes
Version 0.14.dev
----------------

API relevant changes:

* Refactored the `ml.rnn` to `ml.nn` and converted the models to pickles (#110)

Version 0.13 (release date: 2016-03-07)
---------------------------------------

Expand Down
9 changes: 5 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -112,18 +112,19 @@ Install from source

If you plan to use the package as a developer, clone the Git repository::

git clone --recursive https://github.com/CPJKU/madmom.git
git clone --recursive --depth 1 https://github.com/CPJKU/madmom.git

Since the pre-trained model/data files are not included in this repository but
rather added as a Git submodule, you either have to clone the repo recursively.
This is equivalent to these steps::

git clone https://github.com/CPJKU/madmom.git
cd madmom
git submodule update --init --remote
git submodule update --init --remote --depth 1

You can then either include the package directory in your ``$PYTHONPATH`` and
compile the Cython extensions with::
To obtain the full history, omit the `--depth 1` part. You can then either
include the package directory in your ``$PYTHONPATH`` and compile the Cython
extensions with::

python setup.py build_ext --inplace

Expand Down
9 changes: 5 additions & 4 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,18 +69,19 @@ Install from source

If you plan to use the package as a developer, clone the Git repository::

git clone --recursive https://github.com/CPJKU/madmom.git
git clone --recursive --depth 1 https://github.com/CPJKU/madmom.git

Since the pre-trained model/data files are not included in this repository but
rather added as a Git submodule, you either have to clone the repo recursively.
This is equivalent to these steps::

git clone https://github.com/CPJKU/madmom.git
cd madmom
git submodule update --init --remote
git submodule update --init --remote --depth 1

You can then either include the package directory in your ``$PYTHONPATH`` and
compile the Cython extensions with::
To obtain the full history, omit the `--depth 1` part. You can then either
include the package directory in your ``$PYTHONPATH`` and compile the Cython
extensions with::

python setup.py build_ext --inplace

Expand Down

0 comments on commit fce5473

Please sign in to comment.