From 165ccbc59fa6583933381c58a3c3e1d1d3780472 Mon Sep 17 00:00:00 2001 From: Yuanle Song Date: Tue, 28 Mar 2017 16:58:18 +0800 Subject: [PATCH] v0.17.2 add --no-download when creating venv --- project.clj | 2 +- src/leiningen/new/python/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/project.clj b/project.clj index 323f30c..256c7f1 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject python/lein-template "0.17.1" +(defproject python/lein-template "0.17.2" :description "lein template for a python project" :repositories [["snapshots" {:url "http://devserv.game.yy.com/nexus/content/repositories/snapshots" diff --git a/src/leiningen/new/python/Makefile b/src/leiningen/new/python/Makefile index 081fdd1..97e7929 100644 --- a/src/leiningen/new/python/Makefile +++ b/src/leiningen/new/python/Makefile @@ -26,7 +26,7 @@ shell: $(PYTHON) -i venv: - test -d $(VENV) || $(DEFAULT_PYTHON) $(VIRTUALENV) -q $(VENV) + test -d $(VENV) || $(DEFAULT_PYTHON) $(VIRTUALENV) --no-download -q $(VENV) requirements: @if [ -d wheelhouse ]; then \ $(PIP) install -q --no-index --find-links=wheelhouse $(REQUIREMENTS); \ -- GitLab