Skip to content

Commit

Permalink
updated requirements.txt and setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kaliiiiiiiiii committed Aug 13, 2023
1 parent 6f70054 commit 8115e2e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ profile = \
### selenium-driverless
warning:
- this package is experimental and might include bugs, please report them at [bug-reports](https://github.com/kaliiiiiiiiii/Selenium-Driverless/issues)
- only for python >=3.8
```python
from selenium_profiles.webdriver import Chrome
from selenium_profiles.profiles import profiles
Expand Down
24 changes: 15 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
selenium_profiles>=2.2.5.5
requests==2.31.0
selenium==4.8.3 # 4.1.0 for touch_actions
setuptools==67.6.0
undetected-chromedriver==3.4.6
trio
pillow
selenium-interceptor>=1.0.2
selenium-wire
selenium
requests
selenium-interceptor
undetected-chromedriver
selenium-wire
webdriver-manager
selenium-injector>=2.3

# google-colab
# PyVirtualDisplay
# google-colab-shell

# dev
setuptools
twine
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,7 @@

requirements = ['selenium', 'requests', 'selenium-interceptor',
"undetected-chromedriver", "selenium-wire", "webdriver-manager",
"selenium-injector>=2.3"]

py_version = sys.version_info
if py_version.major >= 3 and py_version.minor >= 8:
# requires python >= 3.8
requirements.append("selenium-driverless>=1.2.2")
"selenium-injector>=2.3","selenium-driverless>=1.2.2"]

if 'google.colab' in sys.modules: # we're on google-colab
requirements.extend(['PyVirtualDisplay', "google-colab-shell"])
Expand Down

0 comments on commit 8115e2e

Please sign in to comment.