Commit ed6d945f authored by Andreas Tille's avatar Andreas Tille
Browse files

New upstream version 2.7

parent 65b49ab7
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+9 −0
Original line number Diff line number Diff line
*.pyc
*.egg-info
.tox
dist
build
_build
doc/hosted_site.cmd
.ruffus_history.sqlite
ruffus_development.*
 No newline at end of file

.gitmodules

0 → 100644
+3 −0
Original line number Diff line number Diff line
[submodule "doc/sphinx_rtd_theme"]
	path = doc/sphinx_rtd_theme
	url = https://github.com/bunbun/sphinx_rtd_theme.git

.hgignore

0 → 100644
+7 −0
Original line number Diff line number Diff line
.*\.pyc$
^nested_dict.egg-info/.+
^dist
_build$
doc/hosted_site.cmd
^.tox
^.ruffus_history.sqlite$

.nojekyll

0 → 100644
+0 −0

Empty file added.

.travis.yml

0 → 100644
+16 −0
Original line number Diff line number Diff line
language: python

# all python versions tested via pip in tox
python:
  - "2.7"
  - "3.4"
  - "3.5"
  - "3.6"

before_install:

install: python setup.py install

script: cd ruffus/test && /bin/bash run_all_unit_tests.cmd

sudo: false
Loading