pycapnp/tox.ini
Karl db26d60283
Pin cython to below version 3, Python 3.11 support (#320)
* 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?
2023-07-21 01:40:49 -07:00

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++'