def tags(self):
     if self.tag_build is None:
         try:
             self.tag_build = self.git_timestamp_tag()
         except CalledProcessError:
             pass
     return egg_info.tags(self)
Ejemplo n.º 2
0
 def tags(self):
     if self.tag_build is None:
         try:
             self.tag_build = self.git_timestamp_tag()
         except subprocess.CalledProcessError:
             pass
     return egg_info.tags(self)
Ejemplo n.º 3
0
 def tags(self):
     if self.tag_build is None:
         self.tag_build = self.git_latest_tag() + self.git_timestamp_tag()
     return egg_info.tags(self)
Ejemplo n.º 4
0
 def tags(self):
     if self.tag_build is None:
         self.tag_build = self.git_latest_tag()+self.git_timestamp_tag()
     return egg_info.tags(self)