diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index f7c10cc..2fa0f9f 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -12,6 +12,7 @@ env: CIBW_BUILD: 'cp3?-*' CIBW_SKIP: 'cp35-* cp39-* *-manylinux_i686' CIBW_BEFORE_TEST: pip install pybind11 pytest + CIBW_TEST_EXTRAS: all CIBW_TEST_COMMAND: pytest {package}/tests jobs: diff --git a/setup.py b/setup.py index e218d27..a222076 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import find_packages from setuptools import setup -__version__ = "0.1.0" +__version__ = "0.1.1" ext_modules = [ Pybind11Extension( diff --git a/tox.ini b/tox.ini index 5da9af9..c99f3e9 100644 --- a/tox.ini +++ b/tox.ini @@ -68,8 +68,6 @@ commands = make clean make html - - [pycodestyle] ignore=W503,E731,W605,E203 max-line-length=100