Merge pull request #260 from seleniumbase/update-virtualenv-script-and-manifest

Update virtualenv script and manifest
This commit is contained in:
Michael Mintz 2018-12-26 19:32:21 -05:00 committed by GitHub
commit be60c286d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 15 deletions

View File

@ -4,6 +4,10 @@ include setup.cfg
include .travis.yml include .travis.yml
include .gitignore include .gitignore
include requirements.txt include requirements.txt
include install.sh
include install.bat
include virtualenv_install.sh
include virtualenv_install.bat
include seleniumbase/core/create_db_tables.sql include seleniumbase/core/create_db_tables.sql
include seleniumbase/utilities/selenium_grid/grid-hub include seleniumbase/utilities/selenium_grid/grid-hub
include seleniumbase/utilities/selenium_grid/grid-node include seleniumbase/utilities/selenium_grid/grid-node

View File

@ -17,7 +17,7 @@ except IOError:
setup( setup(
name='seleniumbase', name='seleniumbase',
version='1.17.16', version='1.17.17',
description='Reliable Browser Automation and Testing Framework', description='Reliable Browser Automation and Testing Framework',
long_description=long_description, long_description=long_description,
long_description_content_type='text/markdown', long_description_content_type='text/markdown',

View File

@ -5,17 +5,17 @@
python -m pip install --upgrade virtualenv python -m pip install --upgrade virtualenv
python -m pip install --upgrade virtualenvwrapper-win python -m pip install --upgrade virtualenvwrapper-win
echo "" echo:
echo "" echo:
echo "*** You may now use virtualenv commands in your command shell. ***" echo: *** You may now use virtualenv commands in your command shell. ***
echo "" echo:
echo "virtualenv commands:" echo: virtualenv commands:
echo " * 'mkvirtualenv [ENV_NAME]' - Create a Python virtual environment" echo: * "mkvirtualenv [ENV_NAME]" - Create a Python virtual environment
echo " * 'deactivate' - Exit the current virtual environment" echo: * "deactivate" - Exit the current virtual environment
echo " * 'workon [ENV_NAME]' - Enter an existing virtual environment" echo: * "workon [ENV_NAME]" - Enter an existing virtual environment
echo " * 'lsvirtualenv' OR 'workon' - List all virtual environments" echo: * "lsvirtualenv" OR "workon" - List all virtual environments
echo " * 'rmvirtualenv [ENV_NAME]' - Delete a virtual environment" echo: * "rmvirtualenv [ENV_NAME]" - Delete a virtual environment
echo "" echo:
echo "Example:" echo: Example:
echo " mkvirtualenv seleniumbase " echo: mkvirtualenv seleniumbase
echo "" echo: