File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 11[build-system ]
2- requires = [" setuptools" , " wheel" , " cffi >= 1.17.1" ]
2+ requires = [
3+ " setuptools" ,
4+ " wheel" ,
5+ " cffi >= 1.17.1; platform_system != 'Emscripten'" ,
6+ " cffi > 1.14.0; platform_system == 'Emscripten'" ,
7+ ]
38build-backend = " setuptools.build_meta"
49
510[project ]
611name = " pymunk"
712version = " 6.9.0" # remember to change me for new versions!
813# Require cffi >1.14.0 since that (and older) has problem with returing structs from functions.
914# Require cffi >= 1.17.1 since older cant work with latest setuptools version
10- dependencies = [" cffi >= 1.17.1" ]
15+ dependencies = [
16+ " cffi >= 1.17.1; platform_system != 'Emscripten'" ,
17+ " cffi > 1.14.0; platform_system == 'Emscripten'" ,
18+ ]
1119authors = [{
name =
" Victor Blomqvist" ,
email =
" [email protected] " }]
1220readme = " README.rst"
1321description = " Pymunk is a easy-to-use pythonic 2D physics library"
You can’t perform that action at this time.
0 commit comments