@@ -246,11 +246,11 @@ def cythonize(e, *args, **kwargs):
246246 'Topic :: Security :: Cryptography' ]
247247
248248setup (name = 'randomstate' ,
249- version = '1.11.2 ' ,
249+ version = '1.11.3 ' ,
250250 classifiers = classifiers ,
251251 packages = find_packages (),
252252 package_dir = {'randomstate' : './randomstate' },
253- package_data = {'' : ['*.c' , '*.h' , '*.pxi' , '*.pyx' , '*.pxd' ],
253+ package_data = {'' : ['*.c' , '*.h' , '*.pxi' , '*.pyx' , '*.pxd' , '*.pxi.in' ],
254254 'randomstate.tests.data' : ['*.csv' ]},
255255 include_package_data = True ,
256256 license = 'NSCA' ,
@@ -266,9 +266,9 @@ def cythonize(e, *args, **kwargs):
266266 zip_safe = False )
267267
268268# Clean up generated files
269- exts = ('.pyx' , '-config.pxi' , '.c' )
270- for config in configs :
271- for ext in exts :
272- file_path = join (mod_dir , config ['file_name' ] + ext )
273- if os .path .exists (file_path ):
274- os .unlink (file_path )
269+ # exts = ('.pyx', '-config.pxi', '.c'),
270+ # for config in configs:
271+ # for ext in exts:
272+ # file_path = join(mod_dir, config['file_name'] + ext)
273+ # if os.path.exists(file_path):
274+ # os.unlink(file_path)
0 commit comments