Skip to content

Commit cafdb53

Browse files
committed
ci: use deault macos version in travis
1 parent 88fd5e7 commit cafdb53

File tree

3 files changed

+7
-14
lines changed

3 files changed

+7
-14
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,23 @@ jobs:
2222
#
2323
py27:
2424
docker:
25-
- image: circleci/python:2.7
25+
- image: python:2.7
2626
<<: *test
2727
py35:
2828
docker:
29-
- image: circleci/python:3.5
29+
- image: python:3.5
3030
<<: *test
3131
py36:
3232
docker:
33-
- image: circleci/python:3.6
33+
- image: python:3.6
3434
<<: *test
3535
py37:
3636
docker:
37-
- image: circleci/python:3.7
37+
- image: python:3.7
3838
<<: *test
3939
py38:
4040
docker:
41-
- image: circleci/python:3.8
41+
- image: python:3.8
4242
<<: *test
4343
pypy:
4444
docker:

.travis.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,11 @@ matrix:
1313
- docker
1414
- os: osx
1515
language: generic
16-
osx_image: xcode6.4
17-
- os: osx
18-
language: generic
19-
osx_image: xcode11
2016

2117
script:
22-
- pip install cibuildwheel==1.0.0
18+
- python -m pip install cibuildwheel==1.0.0 twine
2319
- cibuildwheel --output-dir wheelhouse
2420

2521
after_success:
2622
- ls wheelhouse/
27-
- if [ $TRAVIS_TAG ]; then source ci/deploy.sh; fi
23+
- if [ $TRAVIS_TAG ]; then twine upload --username whtsky --password $PYPI_PASSWORD wheelhouse/bencoder*.whl; fi

ci/deploy.sh

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)