Skip to content

Commit

Permalink
Remove the system installation of Sphinx in Vagrant
Browse files Browse the repository at this point in the history
The sphinx-build binary is provided by the system installation of
Sphinx, but because we currently have to use the virtualenv with
--site-packages it causes the system installation of sphinx-build to get
called in the docs builder which fails because all the libs are in the
virtualenv.

I also noticed that the postgres headers were not installed and we're no
longer using the system postgres driver.

Signed-off-by: Jeremy Cline <jeremy@jcline.org>
  • Loading branch information
jeremycline committed Feb 7, 2017
1 parent 8bef737 commit 2b42dc5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ansible/roles/anitya-dev/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
dnf: name={{ item }} state=present
with_items:
- git
- python-sphinx
- python-virtualenvwrapper
- vim-enhanced

Expand All @@ -15,6 +14,7 @@
- gcc
- libffi-devel
- openssl-devel
- postgresql-devel
- python2-devel
- python3-devel
- redhat-rpm-config
Expand Down
4 changes: 4 additions & 0 deletions test_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ vcrpy
# required by vcs looks like
mock
contextlib2

# Required to test building the docs
sphinx
sphinxcontrib-httpdomain

0 comments on commit 2b42dc5

Please sign in to comment.