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 1
1
[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
+ ]
3
8
build-backend = " setuptools.build_meta"
4
9
5
10
[project ]
6
11
name = " pymunk"
7
12
version = " 6.9.0" # remember to change me for new versions!
8
13
# Require cffi >1.14.0 since that (and older) has problem with returing structs from functions.
9
14
# 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
+ ]
11
19
authors = [{ name = " Victor Blomqvist" , email = " vb@viblo.se" }]
12
20
readme = " README.rst"
13
21
description = " Pymunk is a easy-to-use pythonic 2D physics library"
You can’t perform that action at this time.
0 commit comments