Skip to content

Commit

Permalink
update 1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
utahta committed Jan 2, 2013

Verified

This commit was signed with the committer’s verified signature.
1 parent e7d1fa3 commit 93ffd40
Showing 5 changed files with 13 additions and 9 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* 1.3.3
- Fixed bug: venv rename
- develop option removed from `update` command

* 1.3.2
- Improved `venv` command.

7 changes: 7 additions & 0 deletions PKG-INFO
Original file line number Diff line number Diff line change
@@ -183,6 +183,13 @@ See more details below
Changelog
=========

1.3.3 (2013-01-02)
----------------

- Fixed bug: venv rename
- develop option removed from `update` command


1.3.2 (2012-12-30)
----------------

7 changes: 0 additions & 7 deletions pythonbrew/commands/venv.py
Original file line number Diff line number Diff line change
@@ -196,10 +196,6 @@ def run_command_clone(self, options, args):
logger.error("Unknown python version: ( 'pythonbrew venv clone <source> <target> -p VERSION' )")
sys.exit(1)

virtualenv_options = []
if options.no_site_packages:
virtualenv_options.append('--no-site-packages')

source, target = args[1], args[2]
source_dir = os.path.join(self._workon_home, source)
target_dir = os.path.join(self._workon_home, target)
@@ -218,9 +214,6 @@ def run_command_clone(self, options, args):
cmd = [self._py, self._venv_clone, source_dir, target_dir]
s = Subprocess()
s.call(cmd)

# Activate the new venv
self.run_command_use(options, ['use', target])

def run_command_rename(self, options, args):
if len(args) < 3:
2 changes: 1 addition & 1 deletion pythonbrew/define.py
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@
import configparser as ConfigParser

# pythonbrew version
VERSION = "1.3.2"
VERSION = "1.3.3"

# pythonbrew installer root path
INSTALLER_ROOT = os.path.dirname(os.path.abspath(__file__))
2 changes: 1 addition & 1 deletion stable-version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.2
1.3.3

0 comments on commit 93ffd40

Please sign in to comment.