Skip to content

Commit

Permalink
rename build/pipreq.txt to just requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshData committed Aug 2, 2017
1 parent ef340e7 commit 7996590
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Vagrantfile
Expand Up @@ -49,7 +49,7 @@ Vagrant.configure(2) do |config|
# source .venv/bin/activate
# Install Python packages.
pip install --upgrade -r build/pipreq.txt
pip install --upgrade -r requirements.txt
# On OS X, install bcrypt:
# http://stackoverflow.com/questions/22875270/error-installing-bcrypt-with-pip-on-os-x-cant-find-ffi-h-libffi-is-installed
Expand Down
8 changes: 3 additions & 5 deletions fabfile.py
Expand Up @@ -118,7 +118,7 @@ def pull_or_clone_repo(repo_url, folder, branch='master'):

def install_deps():
with cd('govtrack.us-web'):
sudo('pip install --upgrade -r ./build/pipreq.txt')
sudo('pip install --upgrade -r ./requirements.txt')

# We don't need psycopg2 in the normal requirements. If postgres isn't
# installed, the library installation will fail. Leave it out of the
Expand All @@ -137,10 +137,8 @@ def install_deps():
# For backing up the data directory...
sudo('pip install aws')

# TODO: Create a pipreq.server.txt, and move
# pipreq.txt to pipreq.app.txt. Then, install
# pipreq.server.txt here instead of having the
# requirements piece-meal.
# TODO: Create a requirements.server.txt with all of the requirements
# so we don't have to install them all piecemeal.


def configure_solr():
Expand Down
File renamed without changes.

0 comments on commit 7996590

Please sign in to comment.