Skip to content

Commit 9b0816d

Browse files
authored
Merge pull request readthedocs#66 from rtfd/humitos/pyenv/missing-dep
Add missing pyenv build dependency
2 parents 4bf5019 + 1139628 commit 9b0816d

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.travis.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
language: python
22
python:
33
- "3.6"
4+
env:
5+
global:
6+
- PIPENV_VENV_IN_PROJECT=1
7+
- PIPENV_IGNORE_VIRTUALENVS=1
48
before_install:
59
- pip install pipenv
610
install:
7-
- pipenv install --system
8-
script: pytest
11+
- pipenv install
12+
script: pipenv run pytest

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ RUN apt-get -y install \
3232

3333
# pyenv extra requirements
3434
RUN apt-get install -y \
35-
make libssl-dev wget llvm libncurses5-dev libncursesw5-dev xz-utils
35+
make libssl-dev wget llvm libncurses5-dev libncursesw5-dev xz-utils \
36+
tk-dev
3637

3738
# LaTeX -- split to reduce image layer size
3839
RUN apt-get -y install texlive-fonts-extra

0 commit comments

Comments
 (0)