Przeglądaj źródła

Merge pull request #30 from ThomasWaldmann/master

tags and a glob fix
TW 10 lat temu
rodzic
commit
e5e9f9acb2
2 zmienionych plików z 2 dodań i 3 usunięć
  1. 1 1
      CHANGES
  2. 1 2
      setup.py

+ 1 - 1
CHANGES

@@ -54,7 +54,7 @@ forked from Attic:
 Version 0.16
 ------------
 
-(bugfix release, released on X)
+(bugfix release, released on May 16, 2015)
 - Fix typo preventing the security confirmation prompt from working (#303)
 - Improve handling of systems with improperly configured file system encoding (#289)
 - Fix "All archives" output for attic info. (#183)

+ 1 - 2
setup.py

@@ -35,8 +35,7 @@ try:
     class Sdist(versioneer.cmd_sdist):
         def __init__(self, *args, **kwargs):
             for src in glob('borg/*.pyx'):
-                cython_compiler.compile(glob('borg/*.pyx'),
-                                        cython_compiler.default_options)
+                cython_compiler.compile(src, cython_compiler.default_options)
             versioneer.cmd_sdist.__init__(self, *args, **kwargs)
 
         def make_distribution(self):