~ubuntu-branches/ubuntu/precise/pyzmq/precise

« back to all changes in this revision

Viewing changes to docs/autogen_api.py

  • Committer: Package Import Robot
  • Author(s): Julian Taylor, Julian Taylor
  • Date: 2012-02-19 14:53:20 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 9.
  • Revision ID: package-import@ubuntu.com-20120219145320-u8un3j0q1e82dx01
[ Julian Taylor ]
* New upstream release (Closes: #655793)
* added myself to Uploaders
* properly clean to allow building twice in a row
* ignore testsuite result due to random failures on armel and mips
  probably caused by libzmq or toolchain
* add Python3 to short description of py3 packages
* wrap-and-sort debian/
* add python-nose to build depends to get better test result output
* add python-numpy to build depends to get more tests
* use githubredir.debian.net in debian/watch

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
    docwriter = ApiDocWriter(package,rst_extension='.rst')
19
19
    # You have to escape the . here because . is a special char for regexps.
20
20
    # You must do make clean if you change this!
21
 
    docwriter.package_skip_patterns += [ r'\.tests$' ]
 
21
    docwriter.package_skip_patterns += [ r'\.tests$', r'\.platform$' ]
22
22
 
23
 
    docwriter.module_skip_patterns += [ r'\.tests',
24
 
                                        r'win32_support']
 
23
    docwriter.module_skip_patterns += [ r'\.tests' ]
25
24
    
26
25
    # Now, generate the outputs
27
26
    docwriter.write_api_docs(outdir)