Skip to content

Commit

Permalink
List dependencies before the things that depend on them
Browse files Browse the repository at this point in the history
Because we use ordered_pip.sh to install requirements files, we want
dependencies in requirements_dev.txt to be listed _before_ the things
that depend on them, rather than after. Otherwise, with
ordered_pip.sh, stuff will get installed implicitly, and perhaps the
wrong version.
  • Loading branch information
Jonathan Kamens committed Apr 22, 2015
1 parent fdd4940 commit 8ee7f6b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions etc/requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,16 @@ mistune==0.5.1

# Example scripts that are run during unit tests use the following:

matplotlib==1.4.3
# tornado and pyparsing are required by matplotlib
tornado==4.1
pyparsing==2.0.3
# Required by tornado
backports.ssl-match-hostname==3.4.0.2;python_version<'3.0'
certifi==14.5.14

# tornado and pyparsing are required by matplotlib
tornado==4.1
pyparsing==2.0.3

matplotlib==1.4.3

Markdown==2.6.1

# This --allow syntax is for compatibility with pip >= 1.5
Expand Down

0 comments on commit 8ee7f6b

Please sign in to comment.