From c5bf4af6299acd8e586cb5ab7bb3758f380c8cdc Mon Sep 17 00:00:00 2001 From: paulocheque Date: Wed, 26 Mar 2014 10:25:50 +0100 Subject: [PATCH] Fixed Rakefile to publish releases --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index cf05d7d..dedc73f 100644 --- a/Rakefile +++ b/Rakefile @@ -71,7 +71,7 @@ task :test_travis => [] do } end -task :tag => [:tests] do +task :tag => [] do sh "git tag #{VERSION}" sh "git push origin #{VERSION}" end @@ -91,7 +91,7 @@ task :publish => [:tests, :tag] do # Go to 'edit' link # Update version and save # Go to 'files' link and upload the file - virtual_env("python setup.py sdist upload") + virtual_env("python setup.py sdist upload", "env2.7") end task :default => [:tests]