This is an automated email from the ASF dual-hosted git repository. weichen pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/incubator-marvin.git
commit 37ab457cb4180fc41a7aa0ee1daaa48360345549 Author: cardosolucas <cardosolucas61....@gmail.com> AuthorDate: Sun Jan 16 22:03:36 2022 -0300 Using python 3.8 --- .travis.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index e50c911..bfe3e25 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,7 +37,7 @@ matrix: - language: python os: linux python: - - 3.6 + - "3.8" before_install: - travis_retry curl https://d3kbcqa49mib13.cloudfront.net/spark-2.1.1-bin-hadoop2.6.tgz -o ./spark-2.1.1-bin-hadoop2.6.tgz - sudo tar -xf ./spark-2.1.1-bin-hadoop2.6.tgz @@ -49,22 +49,21 @@ matrix: - export MARVIN_HOME=./marvin_home - export MARVIN_DATA_PATH=./marvin_data - export SPARK_HOME=../spark-2.1.1-bin-hadoop2.6 - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install build-essential libsasl2-dev python-pip graphviz rustc cargo libssl-dev libffi-dev python-dev -y ; fi + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install build-essential libsasl2-dev python-pip graphviz libssl-dev libffi-dev -y ; fi - travis_retry pip install --upgrade pip install: - travis_retry pip install codecov - travis_retry pip install unidecode - travis_retry pip install tox tox-travis - - travis_retry pip install cryptography --no-binary cryptography - make install script: - - travis_wait 30 tox -rvve py36 + - travis_wait 30 tox -rvve py38 - codecov # Python CLI - Linux - language: python os: linux python: - - 3.6 + - "3.8" before_install: - travis_retry curl https://d3kbcqa49mib13.cloudfront.net/spark-2.1.1-bin-hadoop2.6.tgz -o ./spark-2.1.1-bin-hadoop2.6.tgz - sudo tar -xf ./spark-2.1.1-bin-hadoop2.6.tgz @@ -76,15 +75,14 @@ matrix: - export MARVIN_HOME=./marvin_home - export MARVIN_DATA_PATH=./marvin_data - export SPARK_HOME=../spark-2.1.1-bin-hadoop2.6 - - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install build-essential libsasl2-dev python-pip graphviz rustc cargo libssl-dev libffi-dev python-dev -y ; fi + - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install build-essential libsasl2-dev python-pip graphviz libssl-dev libffi-dev -y ; fi - travis_retry pip install --upgrade pip install: - travis_retry pip install codecov - travis_retry pip install unidecode - travis_retry pip install tox tox-travis - - travis_retry pip install cryptography --no-binary cryptography - make install - marvin script: - - travis_wait 30 tox -rvve py36 + - travis_wait 30 tox -rvve py38 - codecov