Skip to content

Commit

Permalink
virtualenv: upgrade setuptools to avoid errors
Browse files Browse the repository at this point in the history
Fix the following error seen on debian 8 (jessie):

  $ make virtualenv
  [...]
  error in buildbot setup command: 'extras_require' must be a
  dictionary whose values are strings or lists of strings containing
  valid project/version requirement specifiers.

The distro version of setuptools is old: 5.5.1, upgrading it in the
virtualenv fixes the issue.

Signed-off-by: Robin Jarry <[email protected]>
  • Loading branch information
rjarry committed Apr 14, 2017
1 parent 8a4e6b2 commit d2b9a0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ docker-buildbot-master-ubuntu:

.venv:
virtualenv .venv
.venv/bin/pip install -U pip
.venv/bin/pip install -U pip setuptools
.venv/bin/pip install -e pkg \
-e 'master[tls,test,docs]' \
-e 'worker[test]' \
Expand Down

0 comments on commit d2b9a0b

Please sign in to comment.