diff --git a/pyproject.toml b/pyproject.toml index 64998b803d..b4b1273300 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -150,6 +150,7 @@ environment = "GITHUB_ACTIONS=true" [tool.cibuildwheel.macos] archs = ["x86_64", "arm64", "universal2"] test-skip = ["*universal2:arm64"] +test-command = 'python -c "import zipline; print(zipline.__version__)"' [tool.cibuildwheel.linux] archs = ["auto64"] @@ -159,6 +160,7 @@ skip = "*musllinux*" test-command = 'pytest -k "not daily_returns_is_special_case_of_returns" --reruns 5 {package}/tests' test-skip = ["*"] + [tool.black] line-length = 88 target-version = ['py38', 'py39', 'py310', 'py311']