Skip to content

Commit

Permalink
fix travis
Browse files Browse the repository at this point in the history
  • Loading branch information
almarklein committed Dec 15, 2014
1 parent 717fc2b commit 9d555c6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ install:
pip install -q coveralls;
fi;
# Install imageio, use installed version on only one machine
- python setup.py install > ${REDIRECT_TO}
- python setup.py build_with_fi install > ${REDIRECT_TO}

before_script:

Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ To install imageio with the freeimage library and a few images included,
you can force downloading the libs when building, or use one of the
provided archives from pypi:

* ``python setup.py build_with_libs install``
* ``python setup.py build_with_fi install``
* ``pip install https://pypi.python.org/packages/source/i/imageio/imageio-x.y-linux64.zip``

For developers, we provide a simple mechanism to allow importing
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def _set_platform_resources(resource_dir, platform):
# force_download=True)


class build_with_libs(build_py):
class build_with_fi(build_py):
def run(self):
# Download images and libs
import imageio
Expand Down Expand Up @@ -255,7 +255,7 @@ def _create_dists_for_platform(self, resource_dir, plat):


setup(
cmdclass={'sdist_all': sdist_all, 'build_with_libs': build_with_libs},
cmdclass={'sdist_all': sdist_all, 'build_with_fi': build_with_fi},

name = name,
version = __version__,
Expand Down

0 comments on commit 9d555c6

Please sign in to comment.