chore: stop bundling virtualenv

We bundled our own virtualenv copy to work around bugs in travis-ci
(0cdb38186e). That's a 5+ year old bug
which isn't around anymore.

So no need to keep bundling virtualenv.

closes #462
This commit is contained in:
Jeff Widman 2017-07-24 12:42:13 -06:00 committed by Hanno Schlichting
parent 622604bf2b
commit af9b4cab39
7 changed files with 5 additions and 2345 deletions

View File

@ -8,6 +8,5 @@ exclude .travis.yml
exclude Makefile
exclude run_failure.py
recursive-include kazoo *
recursive-exclude sw *
recursive-include docs *
global-exclude *pyc *pyo

View File

@ -18,6 +18,9 @@ TRAVIS_PYTHON_VERSION ?= $(shell $(PYTHON_EXE) -c "import sys; print('.'.join([s
GREENLET_SUPPORTED = yes
ifeq ($(findstring 3.,$(TRAVIS_PYTHON_VERSION)), 3.)
GREENLET_SUPPORTED = no
VENV_CMD = python -m venv .
else
VENV_CMD = python -m virtualenv .
endif
ifeq ($(PYPY),yes)
GREENLET_SUPPORTED = no
@ -28,7 +31,7 @@ endif
all: build
$(PYTHON):
python sw/virtualenv.py .
$(VENV_CMD)
build: $(PYTHON)
ifeq ($(GREENLET_SUPPORTED),yes)

File diff suppressed because it is too large Load Diff

View File

@ -34,4 +34,4 @@ deps = {[testenv]deps}
[flake8]
builtins = _
exclude = .venv,.tox,dist,doc,*egg,.git,build,tools,sw,local,docs,zookeeper
exclude = .venv,.tox,dist,doc,*egg,.git,build,tools,local,docs,zookeeper