From 8a1bb677b03768100b6d476fdd10a3c5901bb07d Mon Sep 17 00:00:00 2001 From: Yuanle Song Date: Thu, 24 Nov 2016 13:34:35 +0800 Subject: [PATCH] v0.16.3 bugfix: pip install missing a link --- 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 1fadcda..9d304ac 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject python/lein-template "0.16.2" +(defproject python/lein-template "0.16.3" :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 4d3fb3e..044b863 100644 --- a/src/leiningen/new/python/Makefile +++ b/src/leiningen/new/python/Makefile @@ -30,7 +30,7 @@ requirements: @if [ -d wheelhouse ]; then \ $(PIP) install -q --no-index --find-links=wheelhouse $(REQUIREMENTS); \ else \ - $(PIP) install -q --find-links=wheelhouse $(REQUIREMENTS); \ + $(PIP) install -q -f https://emacsos.com/python/packages/ $(REQUIREMENTS); \ fi logdir: @if [ ! -d /var/log/{{name}} ]; then \ -- GitLab