Skip to content

Commit

Permalink
setup.py: add six to install_requires (#672)
Browse files Browse the repository at this point in the history
Commit dcfba0e started using the six
module in splinter/driver/webdriver/__init__.py, but did not declare
the dependency in setup.py as it should have.

Fixes #671.
  • Loading branch information
kenyon authored and andrewsmedina committed Jan 7, 2019
1 parent 59e290b commit 838d0f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
+ [("Programming Language :: Python :: %s" % x) for x in "2.6 2.7 3.3 3.4".split()],
packages=find_packages(exclude=["docs", "tests", "samples"]),
include_package_data=True,
install_requires=["selenium>=3.141.0"],
install_requires=["selenium>=3.141.0", "six"],
extras_require={
"zope.testbrowser": ["zope.testbrowser>=5.2.4", "lxml>=4.2.4", "cssselect"],
"django": ["Django>=1.7.11;python_version<'3.0'", "Django>=2.0.6;python_version>'3.3'", "lxml>=2.3.6", "cssselect", "six"],
Expand Down

0 comments on commit 838d0f6

Please sign in to comment.