Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Adding operator+[=] and operator/[=] for FloatingArray and IntegerArray. #58

Closed
wants to merge 7 commits into from
Closed
Show file tree
Hide file tree
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
18 changes: 17 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
sudo: false
sudo: required
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- kalakris-cmake
packages:
- gcc-4.9
- g++-4.9
- cmake
- valgrind

language: python

# To turn off cached miniconda, cython files and compiler cache comment out the
Expand Down Expand Up @@ -250,6 +262,8 @@ before_install:
- source ci/travis_process_gbq_encryption.sh
- echo $VIRTUAL_ENV
- export PATH="$HOME/miniconda/bin:$PATH"
- export APT_ARGS="-y"
- sudo apt-get install ccache
- df -h
- date
- pwd
Expand All @@ -272,6 +286,8 @@ install:
before_script:
- source activate pandas && pip install codecov
- ci/install_db.sh
- # mysql -e 'create database pandas_nosetest;'
- # psql -c 'create database pandas_nosetest;' -U postgres

script:
- echo "script start"
Expand Down
Loading