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

Commit b982d96

Browse files
committed
* Start assembling a cmake setup with a mix of Kudu and dynd-python snippets and cmake modules
* Build native.pyx stub and libpandas.so * In place cmake build + rpath on linux, at least * Library scaffolding and build infrastructure for libpandas native core experiments to evaluate replacing Series and DataFrame internals and custom dtypes with a consistent set of wrapper types, array, and table data structures. Incorporates several bits of BSD / MIT / Apache-licensed code and various copyright notices have been added to LICENSES. * Do not include pandas/ * Array API stubs * Import bunch of utility code from Arrow, refactoring
1 parent 1369e12 commit b982d96

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+12270
-12
lines changed

.travis.yml

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
sudo: false
1+
sudo: required
2+
dist: trusty
3+
addons:
4+
apt:
5+
sources:
6+
- ubuntu-toolchain-r-test
7+
- kalakris-cmake
8+
packages:
9+
- gcc-4.9
10+
- g++-4.9
11+
- cmake
12+
- valgrind
13+
214
language: python
315

416
# To turn off cached miniconda, cython files and compiler cache comment out the
@@ -250,6 +262,8 @@ before_install:
250262
- source ci/travis_process_gbq_encryption.sh
251263
- echo $VIRTUAL_ENV
252264
- export PATH="$HOME/miniconda/bin:$PATH"
265+
- export APT_ARGS="-y"
266+
- sudo apt-get install ccache
253267
- df -h
254268
- date
255269
- pwd
@@ -272,6 +286,8 @@ install:
272286
before_script:
273287
- source activate pandas && pip install codecov
274288
- ci/install_db.sh
289+
- # mysql -e 'create database pandas_nosetest;'
290+
- # psql -c 'create database pandas_nosetest;' -U postgres
275291

276292
script:
277293
- echo "script start"

0 commit comments

Comments
 (0)