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)
Пример #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)
Пример #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)
Пример #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)