The new install version based on classical setup.py #1

Merged
coissac merged 15 commits from pip-standard-orig-python into master 2019-03-29 15:25:03 +00:00
37 changed files with 320 additions and 1191 deletions
Showing only changes of commit 7c2787b6b3 - Show all commits

View File

@ -228,7 +228,11 @@ cdef class Taxonomy(OBIWrapper) :
cpdef write(self, object prefix) :
if obi_write_taxonomy(self._dms.pointer(), self.pointer(), tobytes(prefix)) < 0 :
cdef DMS dms
cdef OBIDMS_p dms_p
dms = self._dms
dms_p = dms.pointer()
if obi_write_taxonomy(dms_p, self.pointer(), tobytes(prefix)) < 0 :
raise Exception("Error writing the taxonomy to binary files")