Commit f179fe77 authored by Steffen Möller's avatar Steffen Möller
Browse files

New upstream version 1.2.13+dfsg

parent fb0fe852
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
Metadata-Version: 1.1
Name: OBITools
Version: 1.2.12
Version: 1.2.13
Summary: Scripts and library for sequence analysis
Home-page: http://metabarcoding.org/obitools
Author: Eric Coissac
+20 −17
Original line number Diff line number Diff line
@@ -13,10 +13,6 @@ import sys

try:
    from sphinx.setup_command import BuildDoc as ori_build_sphinx
except ImportError:
    if not is_serenity() and install_requirements():
        log.info("Restarting installation with all dependencies ok")
        rerun_with_anothe_python(os.path.realpath(sys.executable))
    
    class build_sphinx(ori_build_sphinx):
        '''
@@ -36,3 +32,10 @@ class build_sphinx(ori_build_sphinx):
            self.finalize_options()
            ori_build_sphinx.run(self)

except ImportError:
    if not is_serenity() and install_requirements():
        log.info("Restarting installation with all dependencies ok")
        rerun_with_anothe_python(os.path.realpath(sys.executable))
        
    
    
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
--extra-index-url https://pypi.python.org/simple/
Cython>=0.24
Sphinx>=1.2.0
Sphinx<2.0
wheel>=0.24.0
virtualenv>=1.11.0
ipython<6.0
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ from os import path


PACKAGE = "OBITools"
VERSION = "1.2.12"
VERSION = "1.2.13"
AUTHOR  = 'Eric Coissac'
EMAIL   = 'eric@coissac.eu'
URL     = 'http://metabarcoding.org/obitools'
+1 −1
Original line number Diff line number Diff line
@@ -47,7 +47,7 @@ if __name__ == '__main__':
            try:
                writer(entry)
            except:
                print >>stderr,"Skip writing of sequence : %s" % entry.id
                print >>stderr,"Skipping an entry"
        else:
            writer(entry)
            
Loading