Skip to content

Commit

Permalink
circleci: Fix workspace issue avoiding to generate deprecated egg
Browse files Browse the repository at this point in the history
Using "pip install -e" is sufficient to build in place and allow the
test to work as expected.

This commit fixes the following error:

Concurrent upstream jobs persisted the same file(s) into the workspace:
  - dist/wordcloud-1.4.1-py2.7-linux-x86_64.egg
  • Loading branch information
jcfr committed Jul 24, 2018
1 parent 9d0eb90 commit 612c961
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scikit-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ build:
# Built distribution (wheel)
- $<RUN_ENV> python setup.py bdist_wheel $<SETUP_BDIST_WHEEL_ARGS>
# Install locally to support tests
- $<RUN_ENV> python setup.py build_ext --inplace
- $<RUN_ENV> python setup.py install
- $<RUN_ENV> pip install -e .
# Cleanup
- python: |
import glob, os
Expand Down

0 comments on commit 612c961

Please sign in to comment.