Skip to content

Commit

Permalink
Merge pull request #79 from seleniumbase/version-upgrades
Browse files Browse the repository at this point in the history
Version upgrades
  • Loading branch information
mdmintz authored Mar 14, 2017
2 parents 14a7e3b + dfef2e0 commit 24a245c
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ COPY requirements.txt /SeleniumBase/requirements.txt
COPY setup.py /SeleniumBase/setup.py
RUN pip install --upgrade pip
RUN pip install --upgrade setuptools
RUN cd /SeleniumBase && ls && pip install -r requirements.txt
RUN cd /SeleniumBase && ls && pip install -r requirements.txt --upgrade
RUN cd /SeleniumBase && python setup.py install

#==========================================
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ pip install seleniumbase --upgrade
You can also customize your local version of SeleniumBase. If you change the Python requirements or make any changes to the SeleniumBase library files, just run the following commands from the SeleniumBase top-level directory for your changes to take effect:

```bash
pip install -r requirements.txt
pip install -r requirements.txt --upgrade
```

```bash
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pip>=9.0.1
setuptools>=34.3.1
setuptools>=34.3.2
selenium==3.3.0
nose>=1.3.7
pytest>=3.0.6
Expand Down
2 changes: 1 addition & 1 deletion server_requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pip>=9.0.1
setuptools>=34.3.1
setuptools>=34.3.2
selenium==2.53.6
nose>=1.3.7
pytest>=3.0.6
Expand Down
4 changes: 2 additions & 2 deletions server_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='seleniumbase',
version='1.3.3',
version='1.3.4',
description='Test Automation Framework - seleniumbase.com',
long_description='Automation Framework for Simple & Reliable Web Testing',
platforms='Mac * Windows * Linux * Docker',
Expand All @@ -19,7 +19,7 @@
license='The MIT License',
install_requires=[
'pip>=9.0.1',
'setuptools>=34.3.1',
'setuptools>=34.3.2',
'selenium==2.53.6',
'nose>=1.3.7',
'pytest>=3.0.6',
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='seleniumbase',
version='1.3.3',
version='1.3.4',
description='Test Automation Framework - seleniumbase.com',
long_description='Automation Framework for Simple & Reliable Web Testing',
platforms='Mac * Windows * Linux * Docker',
Expand All @@ -18,7 +18,7 @@
license='The MIT License',
install_requires=[
'pip>=9.0.1',
'setuptools>=34.3.1',
'setuptools>=34.3.2',
'selenium==3.3.0',
'nose>=1.3.7',
'pytest>=3.0.6',
Expand Down

0 comments on commit 24a245c

Please sign in to comment.