Skip to content

Commit fafcf65

Browse files
committed
Only build wheels on supported CPython versions.
PyPy 3 wheels were failing to build on macOS.
1 parent 68dfb14 commit fafcf65

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ skip_branch_with_pr: true
66

77
environment:
88
# websockets only works on Python >= 3.6.
9-
CIBW_SKIP: cp27-* cp33-* cp34-* cp35-* pp27-*
9+
CIBW_BUILD: cp36-* cp37-* cp38-*
1010
CIBW_TEST_COMMAND: python -W default -m unittest
1111
WEBSOCKETS_TESTS_TIMEOUT_FACTOR: 100
1212

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
env:
22
global:
33
# websockets only works on Python >= 3.6.
4-
- CIBW_SKIP="cp27-* cp33-* cp34-* cp35-* pp27-*"
4+
- CIBW_BUILD="cp36-* cp37-* cp38-*"
55
- CIBW_TEST_COMMAND="python3 -W default -m unittest"
66
- WEBSOCKETS_TESTS_TIMEOUT_FACTOR=100
77

0 commit comments

Comments
 (0)