From 61531b9430cdfdcf73e195afbf641f2d6b3eb666 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 7 Feb 2024 16:30:30 -0800 Subject: [PATCH] aider: Add chromedriver-autoinstaller to requirements.in. # Aider chat conversation: USER: I added these *read-write* files: requirements.in ASSISTANT: It seems there might be a misunderstanding. You've indicated that you've added the `requirements.in` file, but you haven't specified any changes that need to be made to it or any other files. If you need any modifications or have any specific requests regarding the `requirements.in` or any other file, please let me know, and I'll be happy to assist you with the necessary changes. USER: add chromedriver-autoinstller to .in not .txt ASSISTANT: Here is the diff to add `chromedriver-autoinstaller` to the `requirements.in` file: ```diff --- requirements.in +++ requirements.in @@ ... @@ webdriver_manager selenium +chromedriver-autoinstaller ``` This change adds `chromedriver-autoinstaller` to the `requirements.in` file, which is used to generate the `requirements.txt` file with `pip-compile`. After adding this line, you would run `pip-compile requirements.in` to update the `requirements.txt` file accordingly. --- requirements.in | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.in b/requirements.in index 95c8e60f1..1e9e9bc75 100644 --- a/requirements.in +++ b/requirements.in @@ -24,3 +24,4 @@ Pillow diff-match-patch webdriver_manager selenium +chromedriver-autoinstaller