mirror of
https://github.com/borgbackup/borg.git
synced 2025-01-24 08:19:03 +00:00
a bit too much glob there in setup.py, removed
This commit is contained in:
parent
7df45d7739
commit
0ad2ab2496
1 changed files with 1 additions and 2 deletions
3
setup.py
3
setup.py
|
@ -35,8 +35,7 @@
|
||||||
class Sdist(versioneer.cmd_sdist):
|
class Sdist(versioneer.cmd_sdist):
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
for src in glob('borg/*.pyx'):
|
for src in glob('borg/*.pyx'):
|
||||||
cython_compiler.compile(glob('borg/*.pyx'),
|
cython_compiler.compile(src, cython_compiler.default_options)
|
||||||
cython_compiler.default_options)
|
|
||||||
versioneer.cmd_sdist.__init__(self, *args, **kwargs)
|
versioneer.cmd_sdist.__init__(self, *args, **kwargs)
|
||||||
|
|
||||||
def make_distribution(self):
|
def make_distribution(self):
|
||||||
|
|
Loading…
Reference in a new issue