Skip to content

parkin/python-wheelhouse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#python-wheelhouse# Build Status

Small collection of Python wheels. See the collection here.

#Built on Ubuntu 12.04#

PySide (python 2.7) PySide (python 3.4)

tables (python 2.7)

##PySide##

Built a PySide wheel so Travis-CI builds using Python3.4 do not have to build PySide from source.

Following these instructions, I built a PySide wheel by:

$ git clone https://github.com/PySide/pyside-setup.git pyside-setup
$ cd pyside-setup
$ python3.4 setup.py bdist_wheel --qmake=/usr/bin/qmake-qt4 --version=1.2.2

The wheel is hosted at http://parkin.github.io/python-wheelhouse.

##Usage## In your .travis.yml file, include the following:

install:
  - sudo apt-get install libqt4-dev
  - pip install --find-links https://parkin.github.io/python-wheelhouse/ --use-wheel PySide;
  # Travis CI servers use virtualenvs, so we need to finish the install by the following
  - python ~/virtualenv/python${TRAVIS_PYTHON_VERSION}/bin/pyside_postinstall.py -install