Skip to content

Commit

Permalink
Adding python3.9 wheels release
Browse files Browse the repository at this point in the history
base on this draft PR/branch
pypa/cibuildwheel#382

currently skipping windows for python3.9, since the
tests are not working
  • Loading branch information
fruch committed Jul 23, 2020
1 parent 3ea7636 commit 6732816
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
os: osx
env:
- CIBW_BEFORE_TEST_MACOS="pip install -r {project}/test-requirements.txt pytest"
- CIBW_BUILD="cp37* cp38*"
- CIBW_BUILD="cp37* cp38* cp39*"
before_install:
- brew install libev
language: shell
Expand All @@ -122,7 +122,9 @@ jobs:
- name: CPython Windows 64
os: windows
language: shell
env: CIBW_BUILD="cp*win_amd64"
env:
- CIBW_BUILD="cp*win_amd64"
- CIBW_SKIP="cp39*"
before_install:
- choco install python --version 3.8.0
- export PATH="/c/Python38:/c/Python38/Scripts:$PATH"
Expand All @@ -132,7 +134,9 @@ jobs:
- name: CPython Windows 32
os: windows
language: shell
env: CIBW_BUILD="cp*win32"
env:
- CIBW_BUILD="cp*win32"
- CIBW_SKIP="cp39*"
before_install:
- choco install python --version 3.8.0
- export PATH="/c/Python38:/c/Python38/Scripts:$PATH"
Expand Down Expand Up @@ -162,7 +166,8 @@ jobs:
if: type != pull_request AND (branch = master OR (tag =~ /^.*-scylla$/))

install:
- python3 -m pip install cibuildwheel==1.3.0
# - python3 -m pip install cibuildwheel==1.3.0
- python3 -m pip install git+https://github.com/joerick/cibuildwheel.git@python3.9

script:
# build the wheels, put them into './wheelhouse'
Expand Down

0 comments on commit 6732816

Please sign in to comment.