소스 검색

a bit too much glob there in setup.py, removed

Thomas Waldmann 10 년 전
부모
커밋
0ad2ab2496
1개의 변경된 파일1개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 2
      setup.py

+ 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):