Skip to content

Commit

Permalink
ci: fix travis build config validation messages
Browse files Browse the repository at this point in the history
Build config validation:
- root: deprecated key sudo (The key `sudo` has no effect anymore.)
- deploy.on: unknown key distributions (sdist bdist_wheel)
- root: missing os, using the default linux
- deploy: key user is an alias for username, using username

from https://travis-ci.org/github/dhimmel/obonet/jobs/730683465/config
  • Loading branch information
dhimmel committed Sep 27, 2020
1 parent db8dd77 commit fb3e05e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
os: linux
dist: focal
sudo: false
language: python
python:
- "3.5"
Expand All @@ -17,11 +17,11 @@ script:
- pytest --color=yes
deploy:
- provider: pypi
user: __token__
username: __token__
password: $pypi_password
on:
python: "3.8"
condition: $NETWORKX_VERSION = 2.*
repo: dhimmel/obonet
tags: true
distributions: sdist bdist_wheel
distributions: sdist bdist_wheel

0 comments on commit fb3e05e

Please sign in to comment.