Skip to content

Commit 46f4ea7

Browse files
committed
start 1.11 with optimization suggestion from ChrisHas35
1 parent b264d35 commit 46f4ea7

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@ For more details, refer to the column I wrote for the May 2008 issue of Python M
9898
Updates
9999
=======
100100

101+
1.11
102+
- Optimize virtualenvwrapper_show_workon_options.
103+
-
104+
101105
1.10
102106
- Pull in fix for colorized ls from Jeff Forcier (b42a25f7b74a).
103107

pavement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# What project are we building?
2424
PROJECT = 'virtualenvwrapper'
25-
VERSION = '1.10'
25+
VERSION = '1.11'
2626

2727
# Read the long description to give to setup
2828
README_FILE = 'README'

virtualenvwrapper_bashrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ function rmvirtualenv () {
115115
# List the available environments.
116116
function virtualenvwrapper_show_workon_options () {
117117
virtualenvwrapper_verify_workon_home
118-
find "$WORKON_HOME" -maxdepth 1 -mindepth 1 -type d -exec basename '{}' \; | egrep -v '*.egg' | egrep -v '(pre|post)(rm|mk)virtualenv' | sort
118+
find "$WORKON_HOME" -maxdepth 1 -mindepth 1 -type d -exec basename '{}' \; | sort
119119
}
120120

121121
# List or change working virtual environments

0 commit comments

Comments
 (0)