From 631a7f40c2a76cd61ecb77d1f8e18f09fdd439b8 Mon Sep 17 00:00:00 2001 From: Barbara Miller Date: Thu, 17 Oct 2024 09:22:30 -0700 Subject: [PATCH 1/2] move doublethink to extras_require --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ebea44c..0effd89 100644 --- a/setup.py +++ b/setup.py @@ -71,7 +71,6 @@ setuptools.setup( "websocket-client==1.8.0", "pillow>=5.2.0", "urlcanon>=0.1.dev23", - "doublethink @ git+https://github.com/internetarchive/doublethink.git@Py311", "rethinkdb==2.4.9", "cerberus>=1.0.1", "jinja2>=2.10", @@ -81,6 +80,7 @@ setuptools.setup( ], extras_require={ "yt-dlp": ["yt-dlp>=2024.7.25"], + "doublethink": ["doublethink @ git+https://github.com/internetarchive/doublethink.git@Py311"], "dashboard": ["flask>=1.0", "gunicorn>=19.8.1"], "easy": [ "warcprox>=2.4.31", From 5ac681cb37b859d0813ea5f71e626a185421bde3 Mon Sep 17 00:00:00 2001 From: Barbara Miller Date: Thu, 17 Oct 2024 09:24:21 -0700 Subject: [PATCH 2/2] black'd --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0effd89..e31567d 100644 --- a/setup.py +++ b/setup.py @@ -80,7 +80,9 @@ setuptools.setup( ], extras_require={ "yt-dlp": ["yt-dlp>=2024.7.25"], - "doublethink": ["doublethink @ git+https://github.com/internetarchive/doublethink.git@Py311"], + "doublethink": [ + "doublethink @ git+https://github.com/internetarchive/doublethink.git@Py311" + ], "dashboard": ["flask>=1.0", "gunicorn>=19.8.1"], "easy": [ "warcprox>=2.4.31",