Skip to content

Commit

Permalink
example scripts and pipeline working
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniojbt committed Oct 9, 2017
1 parent 2b1d44c commit d3df6e2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ include COPYING
include external_dependencies.rst
include requirements.rst
include Dockerfile
include Dockerfile_pq_all_tests

# Include project documentation:
recursive-include docs *.html
Expand Down Expand Up @@ -72,6 +73,7 @@ exclude .gitignore
exclude .dir_bash_history
exclude tests/.dir_bash_history
exclude templates/.dir_bash_history
exclude templates/.DS_Store
exclude templates/project_template/.dir_bash_history
exclude templates/project_template/docs/.dir_bash_history
exclude templates/project_template/scripts/.dir_bash_history
Expand Down
7 changes: 6 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ v0.3 (future)
- updated templates
- added rsync example command and instructions for remote copies
- added Ruffus/CGAT simplified pipeline template script

- added example scripts and pipeline, option '--example'

v0.2

Expand Down Expand Up @@ -447,6 +447,8 @@ For example, if you want to tag and version a previous commit, do the following:

.. code-block:: bash
# Update version.py if needed
# Check the tag history:
git tag
Expand All @@ -459,6 +461,9 @@ For example, if you want to tag and version a previous commit, do the following:
# Push the tag
# By default, the git push command does not transfer tags to remote servers, so run:
git push origin v0.1
# You'll then need to click around in the GitHub repository to formally
publish the release.
-----

Expand Down
2 changes: 1 addition & 1 deletion project_quickstart/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
def set_version():
__version__ = '0.2.8'
__version__ = '0.2.9'
return(__version__)

0 comments on commit d3df6e2

Please sign in to comment.