@@ -246,11 +246,11 @@ def cythonize(e, *args, **kwargs):
246
246
'Topic :: Security :: Cryptography' ]
247
247
248
248
setup (name = 'randomstate' ,
249
- version = '1.11.2 ' ,
249
+ version = '1.11.3 ' ,
250
250
classifiers = classifiers ,
251
251
packages = find_packages (),
252
252
package_dir = {'randomstate' : './randomstate' },
253
- package_data = {'' : ['*.c' , '*.h' , '*.pxi' , '*.pyx' , '*.pxd' ],
253
+ package_data = {'' : ['*.c' , '*.h' , '*.pxi' , '*.pyx' , '*.pxd' , '*.pxi.in' ],
254
254
'randomstate.tests.data' : ['*.csv' ]},
255
255
include_package_data = True ,
256
256
license = 'NSCA' ,
@@ -266,9 +266,9 @@ def cythonize(e, *args, **kwargs):
266
266
zip_safe = False )
267
267
268
268
# 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