8000 ci: update workflows by henryiii · Pull Request #73 · pybind/python_example · GitHub
[go: up one dir, main page]

Skip to content

ci: update workflows #73

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 3 commits into from
Apr 21, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
ci: fix travis
  • Loading branch information
henryiii committed Apr 21, 2021
commit c939144de8c5451cf8c48a85262c4753fab2deae
9 changes: 3 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,15 @@ matrix:
- os: linux
env: PYTHON=2.7
- os: linux
env: PYTHON=3.6
env: PYTHON=3.8
- os: linux
env: CONDA=3.7
- os: linux
env: CONDA=3.6
- os: osx
env: PYTHON=2.7
- os: osx
env: PYTHON=3.6
env: PYTHON=3.8
- os: osx
env: CONDA=3.7
- os: osx
env: CONDA=3.6
before_install:
- |
if [ "$TRAVIS_OS_NAME" = "linux" ]; then export CXX=g++-4.8 CC=gcc-4.8; fi
Expand All @@ -32,6 +28,7 @@ before_install:
python -m pip install --user virtualenv
virtualenv -p python${PYTHON:0:1} venv
source venv/bin/activate
pip install -U pip
elif [ -n "$CONDA" ]; then
if [ "$TRAVIS_OS_NAME" = "linux" ]; then OS=Linux-x86_64; else OS=MacOSX-x86_64; fi
wget -O miniconda.sh https://repo.continuum.io/miniconda/Miniconda${CONDA:0:1}-latest-$OS.sh
Expand Down
0