-
```
Documentation is for 2.3b1 but when I go to download link on pypi.python.org or
code.google.com, only 2.2 shows. Is Ruffus defunct?
```
Original issue reported on code.google.com by `erxnme...…
-
```
What steps will reproduce the problem?
1. easy_install ruffus on python 2.6
2. install multiprocessing
What is the expected output? What do you see instead?
multiprocessing is bundled in 2.6
Wha…
-
```
Verbosity levels for pipeline_printout and pipeline_run do not seem to be
synchronised. It is not clear what exactly increasing verbosity does at each
level. What is more, different things seem …
-
```
What steps will reproduce the problem?
1. Use the pipeline_printout_graph function on Python3 (any output format)
What is the expected output?
A pipeline printout.
What do you see instead?
The…
-
```
What steps will reproduce the problem?
1. have easy_install installed in your computer (setuptools)
2. $: sudo easy_install ruffus
3. it will return an error
What is the expected output? What do …
-
```
I believe the example code in the tutorial was included as images:
http://www.ruffus.org.uk/tutorials/simple_tutorial/step1_follows.html
Would it be possible to include the example code as text, …
-
```
In Python 3, process.communicate() returns bytes, not strings. Calling
stream.write(result_str) in ruffus.graph.graph_printout() causes an exception.
The solution is to open the output file with…
-
A few PDF input files (**which were already processed by tesseract-ocr pdf mode**) throw an error in OCRmyPDF even in the `--force-ocr` mode. At the moment, I have no idea what exactly happens, but th…
-
```
Having the ruffus directory nested in the src/ subdirectory prevents "sudo
python setup.py develop" from working properly. Granted that's probably a
bigger issue with setuptools, but it does mak…
-
```
A trivial pipeline:
{{{
import os
from ruffus import *
@files("foo.1", "foo.2")
def mkfile1(a, b):
with open(a) as src:
with open(b, "wb") as dst:
data = src.read()
…