Skip to content

chore(build): bump node to 14 for new semantic-release version #42

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 5, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 11 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
language: python

dist: xenial
dist: bionic

cache: pip

notifications:
email: true

matrix:
include:
- python: 3.6
Expand All @@ -20,23 +23,24 @@ matrix:
- python: 3.9

before_install:
- npm install npm@latest -g
- sudo apt-get update
- sudo apt-get install pandoc
- pip install pypandoc
- sudo apt-get update
- sudo apt-get install pandoc
- pip install pypandoc
- echo -e "machine github.ibm.com\n login $GH_TOKEN" > ~/.netrc

install:
- pip install tox-travis

script: tox

before_deploy:
- pip install bump2version
- nvm install 12
- nvm install 14
- npm install npm@latest -g
- npm install @semantic-release/changelog
- npm install @semantic-release/exec
- npm install @semantic-release/git
- npm install @semantic-release/github
- pip install bump2version

deploy:
- provider: script
Expand All @@ -45,7 +49,6 @@ deploy:
on:
python: '3.6'
branch: master

- provider: pypi
user: __token__
password: $PYPI_TOKEN
Expand Down