Skip to content

Commit 4e28384

Browse files
committed
Install twine on AppVeyor
1 parent a13d778 commit 4e28384

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ matrix:
1212
include:
1313
- sudo: required
1414
os: linux
15+
language: python
1516
services:
1617
- docker
1718
env: DOCKER_IMAGE=quay.io/pypa/manylinux1_x86_64
1819
- sudo: required
1920
os: linux
21+
language: python
2022
services:
2123
- docker
2224
env: DOCKER_IMAGE=quay.io/pypa/manylinux1_i686

appveyor.yml

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ deploy_script:
2929
- ps: >-
3030
if($env:appveyor_repo_tag -eq 'True') {
3131
$env:Path += ";C:\Python35;C:\Python35\scripts"
32+
pip install twine
3233
twine upload --username whtsky --password $env:PYPI_PASSWD wheelhouse/bencoder*.whl
3334
}
3435

ci/deploy.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
2-
sudo pip install twine
3-
sudo twine upload --username whtsky --password $PYPI_PASSWORD wheelhouse/bencoder*.whl
2+
pip install twine
3+
twine upload --username whtsky --password $PYPI_PASSWORD wheelhouse/bencoder*.whl

0 commit comments

Comments
 (0)