Skip to content

Commit

Permalink
Roll back selenium until 4.0.0 branch is stable
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonrobertz committed Apr 22, 2020
1 parent e223c5b commit be00c77
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion autoscrape/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
__title__ = 'autoscrape-py'
__author__ = 'Brandon Roberts ([email protected])'
__license__ = 'AGPLv3'
__version__ = '1.6.7'
__version__ = '1.6.8'


from autoscrape.scrapers.test import TestScraper
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
selenium>=4.0.0a3
selenium>=3.141.0,<4.0.0
lxml>=4.3.0
html5lib>=1.0.1
webencodings>=0.5.1
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def get_long_description():

setuptools.setup(
name='autoscrape',
version='1.6.7',
version='1.6.8',
description='An automated, programming-free web scraper for interactive sites',
long_description=get_long_description(),
author='Brandon Roberts',
Expand Down Expand Up @@ -65,7 +65,7 @@ def get_long_description():
],
extras_require={
'selenium-backend': [
'selenium>=4.0.0a3'
'selenium>=3.141.0,<4.0.0',
],
'warc-backend': [
'warc3-wet>=0.2.3',
Expand All @@ -79,7 +79,7 @@ def get_long_description():
'networkx>=2.2',
],
'all': [
'selenium>=4.0.0a3'
'selenium>=3.141.0,<4.0.0',
'networkx>=2.2',
'numpy>=1.15.0',
'warc3-wet>=0.2.3',
Expand Down

0 comments on commit be00c77

Please sign in to comment.