10000 CI/DOC: fix clipboard on travis by saurav2608 · Pull Request #26103 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

CI/DOC: fix clipboard on travis #26103

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
May 16, 2019
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
changed from xsel to xclip
  • Loading branch information
saurav-chakravorty committed Apr 15, 2019
commit 41ef5c0b1c466e68a6ef64a66fa159f46d1022e6
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ matrix:

before_install:
- echo "before_install"
- sudo apt-get install -y xsel
- sudo apt-get install xclip python3-pyqt4
# set non-blocking IO on travis
# https://github.com/travis-ci/travis-ci/issues/8920#issuecomment-352661024
- python -c 'import os,sys,fcntl; flags = fcntl.fcntl(sys.stdout, fcntl.F_GETFL); fcntl.fcntl(sys.stdout, fcntl.F_SETFL, flags&~os.O_NONBLOCK);'
Expand Down
0