Skip to content

Commit f481be3

Browse files
committed
Revert "Merged in 334 (pull request #78)"
This reverts commit 3ca9883, reversing changes made to ef6b567.
1 parent 9b1e437 commit f481be3

File tree

8 files changed

+27
-27
lines changed

8 files changed

+27
-27
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ test:
4040
tox
4141

4242
test-quick:
43-
tox -e py37
43+
tox -e py27
4444

4545
develop:
4646
python setup.py develop

docs/source/developers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ documentation::
5050
writing output... [100%] index
5151

5252
writing additional files... search
53-
copying static files... WARNING: static directory '/Users/username/Devel/virtualenvwrapper/plugins/docs/sphinx/pkg/static' does not exist
53+
copying static files... WARNING: static directory '/Users/dhellmann/Devel/virtualenvwrapper/plugins/docs/sphinx/pkg/static' does not exist
5454
done
5555
dumping search index... done
5656
dumping object inventory... done

docs/source/index.rst

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ installed by pip or your package manager.
5454
....................................................
5555
....................................................
5656
...............................done.
57-
virtualenvwrapper.user_scripts Creating /Users/username/Envs/env1/bin/predeactivate
58-
virtualenvwrapper.user_scripts Creating /Users/username/Envs/env1/bin/postdeactivate
59-
virtualenvwrapper.user_scripts Creating /Users/username/Envs/env1/bin/preactivate
60-
virtualenvwrapper.user_scripts Creating /Users/username/Envs/env1/bin/postactivate New python executable in env1/bin/python
57+
virtualenvwrapper.user_scripts Creating /Users/dhellmann/Envs/env1/bin/predeactivate
58+
virtualenvwrapper.user_scripts Creating /Users/dhellmann/Envs/env1/bin/postdeactivate
59+
virtualenvwrapper.user_scripts Creating /Users/dhellmann/Envs/env1/bin/preactivate
60+
virtualenvwrapper.user_scripts Creating /Users/dhellmann/Envs/env1/bin/postactivate New python executable in env1/bin/python
6161
(env1)$ ls $WORKON_HOME
6262
env1 hook.log
6363

@@ -72,7 +72,7 @@ Now we can install some software into the environment.
7272
Installing collected packages: django
7373
Running setup.py install for django
7474
changing mode of build/scripts-2.6/django-admin.py from 644 to 755
75-
changing mode of /Users/username/Envs/env1/bin/django-admin.py to 755
75+
changing mode of /Users/dhellmann/Envs/env1/bin/django-admin.py to 755
7676
Successfully installed django
7777

7878
We can see the new package with ``lssitepackages``::
@@ -91,18 +91,18 @@ Of course we are not limited to a single virtualenv::
9191
....................................................
9292
....................................................
9393
........... ...............................done.
94-
virtualenvwrapper.user_scripts Creating /Users/username/Envs/env2/bin/predeactivate
95-
virtualenvwrapper.user_scripts Creating /Users/username/Envs/env2/bin/postdeactivate
96-
virtualenvwrapper.user_scripts Creating /Users/username/Envs/env2/bin/preactivate
97-
virtualenvwrapper.user_scripts Creating /Users/username/Envs/env2/bin/postactivate New python executable in env2/bin/python
94+
virtualenvwrapper.user_scripts Creating /Users/dhellmann/Envs/env2/bin/predeactivate
95+
virtualenvwrapper.user_scripts Creating /Users/dhellmann/Envs/env2/bin/postdeactivate
96+
virtualenvwrapper.user_scripts Creating /Users/dhellmann/Envs/env2/bin/preactivate
97+
virtualenvwrapper.user_scripts Creating /Users/dhellmann/Envs/env2/bin/postactivate New python executable in env2/bin/python
9898
(env2)$ ls $WORKON_HOME
9999
env1 env2 hook.log
100100

101101
Switch between environments with ``workon``::
102102

103103
(env2)$ workon env1
104104
(env1)$ echo $VIRTUAL_ENV
105-
/Users/username/Envs/env1
105+
/Users/dhellmann/Envs/env1
106106
(env1)$
107107

108108
The ``workon`` command also includes tab completion for the
@@ -114,7 +114,7 @@ is activated or deactivated (see :ref:`scripts`).
114114
(env1)$ echo 'cd $VIRTUAL_ENV' >> $WORKON_HOME/postactivate
115115
(env1)$ workon env2
116116
(env2)$ pwd
117-
/Users/username/Envs/env2
117+
/Users/dhellmann/Envs/env2
118118

119119
:ref:`scripts-postmkvirtualenv` is run when a new environment is
120120
created, letting you automatically install commonly-used tools.
@@ -128,10 +128,10 @@ created, letting you automatically install commonly-used tools.
128128
....................................................
129129
....................................................
130130
........... ...............................done.
131-
virtualenvwrapper.user_scripts Creating /Users/username/Envs/env3/bin/predeactivate
132-
virtualenvwrapper.user_scripts Creating /Users/username/Envs/env3/bin/postdeactivate
133-
virtualenvwrapper.user_scripts Creating /Users/username/Envs/env3/bin/preactivate
134-
virtualenvwrapper.user_scripts Creating /Users/username/Envs/env3/bin/postactivate
131+
virtualenvwrapper.user_scripts Creating /Users/dhellmann/Envs/env3/bin/predeactivate
132+
virtualenvwrapper.user_scripts Creating /Users/dhellmann/Envs/env3/bin/postdeactivate
133+
virtualenvwrapper.user_scripts Creating /Users/dhellmann/Envs/env3/bin/preactivate
134+
virtualenvwrapper.user_scripts Creating /Users/dhellmann/Envs/env3/bin/postactivate
135135
Downloading/unpacking sphinx
136136
Downloading Sphinx-0.6.5.tar.gz (972Kb): 972Kb downloaded
137137
Running setup.py egg_info for package sphinx
@@ -152,12 +152,12 @@ created, letting you automatically install commonly-used tools.
152152
Running setup.py install for Pygments
153153
Running setup.py install for sphinx
154154
no previously-included directories found matching 'doc/_build'
155-
Installing sphinx-build script to /Users/username/Envs/env3/bin
156-
Installing sphinx-quickstart script to /Users/username/Envs/env3/bin
157-
Installing sphinx-autogen script to /Users/username/Envs/env3/bin
155+
Installing sphinx-build script to /Users/dhellmann/Envs/env3/bin
156+
Installing sphinx-quickstart script to /Users/dhellmann/Envs/env3/bin
157+
Installing sphinx-autogen script to /Users/dhellmann/Envs/env3/bin
158158
Successfully installed docutils Jinja2 Pygments sphinx (env3)$
159159
(venv3)$ which sphinx-build
160-
/Users/username/Envs/env3/bin/sphinx-build
160+
/Users/dhellmann/Envs/env3/bin/sphinx-build
161161

162162
Through a combination of the existing functions defined by the core
163163
package (see :ref:`command`), third-party plugins (see

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
virtualenv>=20.0.4
1+
virtualenv
22
virtualenv-clone
33
stevedore

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ classifier =
1010
License :: OSI Approved :: MIT License
1111
Programming Language :: Python
1212
Programming Language :: Python :: 2
13+
Programming Language :: Python :: 2.6
1314
Programming Language :: Python :: 2.7
1415
Programming Language :: Python :: 3
16+
Programming Language :: Python :: 3.3
1517
Programming Language :: Python :: 3.4
1618
Programming Language :: Python :: 3.5
1719
Programming Language :: Python :: 3.6
18-
Programming Language :: Python :: 3.7
19-
Programming Language :: Python :: 3.8
2020
Intended Audience :: Developers
2121
Environment :: Console
2222
keywords =

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py34,py35,py36,py37,py38,zsh,ksh,style
2+
envlist = py27,py33,py34,py35,py36,zsh,ksh,style
33

44
[testenv]
55
install_command = pip install -U {opts} {packages}

virtualenvwrapper.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ then
8282
fi
8383

8484
# Define script folder depending on the platorm (Win32/Unix)
85-
VIRTUALENVWRAPPER_ENV_BIN_DIR="usr/local/bin"
85+
VIRTUALENVWRAPPER_ENV_BIN_DIR="bin"
8686
if [ "${OS:-}" = "Windows_NT" ] && ([ "${MSYSTEM:-}" = "MINGW32" ] || [ "${MSYSTEM:-}" = "MINGW64" ])
8787
then
8888
# Only assign this for msys, cygwin use standard Unix paths

virtualenvwrapper/user_scripts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
script_folder = 'Scripts'
2424
else:
2525
is_msys = False
26-
script_folder = 'usr/local/bin'
26+
script_folder = 'bin'
2727

2828

2929
def _get_msys_shell():

0 commit comments

Comments
 (0)