Skip to content

Commit be60c28

Browse files
authored
Merge pull request #260 from seleniumbase/update-virtualenv-script-and-manifest
Update virtualenv script and manifest
2 parents 0fcfba3 + c5a0e42 commit be60c28

File tree

3 files changed

+19
-15
lines changed

3 files changed

+19
-15
lines changed

MANIFEST.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ include setup.cfg
44
include .travis.yml
55
include .gitignore
66
include requirements.txt
7+
include install.sh
8+
include install.bat
9+
include virtualenv_install.sh
10+
include virtualenv_install.bat
711
include seleniumbase/core/create_db_tables.sql
812
include seleniumbase/utilities/selenium_grid/grid-hub
913
include seleniumbase/utilities/selenium_grid/grid-node

setup.py

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

1818
setup(
1919
name='seleniumbase',
20-
version='1.17.16',
20+
version='1.17.17',
2121
description='Reliable Browser Automation and Testing Framework',
2222
long_description=long_description,
2323
long_description_content_type='text/markdown',

virtualenv_install.bat

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55

66
python -m pip install --upgrade virtualenv
77
python -m pip install --upgrade virtualenvwrapper-win
8-
echo ""
9-
echo ""
10-
echo "*** You may now use virtualenv commands in your command shell. ***"
11-
echo ""
12-
echo "virtualenv commands:"
13-
echo " * 'mkvirtualenv [ENV_NAME]' - Create a Python virtual environment"
14-
echo " * 'deactivate' - Exit the current virtual environment"
15-
echo " * 'workon [ENV_NAME]' - Enter an existing virtual environment"
16-
echo " * 'lsvirtualenv' OR 'workon' - List all virtual environments"
17-
echo " * 'rmvirtualenv [ENV_NAME]' - Delete a virtual environment"
18-
echo ""
19-
echo "Example:"
20-
echo " mkvirtualenv seleniumbase "
21-
echo ""
8+
echo:
9+
echo:
10+
echo: *** You may now use virtualenv commands in your command shell. ***
11+
echo:
12+
echo: virtualenv commands:
13+
echo: * "mkvirtualenv [ENV_NAME]" - Create a Python virtual environment
14+
echo: * "deactivate" - Exit the current virtual environment
15+
echo: * "workon [ENV_NAME]" - Enter an existing virtual environment
16+
echo: * "lsvirtualenv" OR "workon" - List all virtual environments
17+
echo: * "rmvirtualenv [ENV_NAME]" - Delete a virtual environment
18+
echo:
19+
echo: Example:
20+
echo: mkvirtualenv seleniumbase
21+
echo:

0 commit comments

Comments
 (0)