mirror of
https://github.com/capnproto/pycapnp.git
synced 2025-03-04 08:24:43 +01:00

* Pin cython to below version 3 Cython 3 includes backwards incompatible changes so it's no longer possible to install pycapnp from source. * Add py311 environment I'm not sure if this is necessary, but 3.11 is out so might as well?
18 lines
256 B
INI
18 lines
256 B
INI
[tox]
|
|
envlist = py37,py38,py39,py310,py311
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
deps=
|
|
pkgconfig
|
|
Jinja2
|
|
pytest
|
|
cython<3
|
|
|
|
commands =
|
|
python setup.py install
|
|
py.test {posargs}
|
|
|
|
setenv =
|
|
CFLAGS='-stdlib=libc++'
|
|
CXXFLAGS='-stdlib=libc++'
|