Skip to content

Commit 4e7d512

Browse files
authored
Merge pull request #1621 from seleniumbase/special-debugger-installed-separately
Install special debuggers optionally
2 parents 40baf45 + e159129 commit 4e7d512

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

requirements.txt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,6 @@ cryptography==36.0.2;python_version>="3.6" and python_version<"3.7"
9494
cryptography==38.0.3;python_version>="3.7"
9595
pygments==2.5.2;python_version<"3.6"
9696
pygments==2.13.0;python_version>="3.6"
97-
wmctrl==0.4
98-
pyrepl==0.9.0
99-
fancycompleter==0.9.1
100-
pdbpp==0.10.3
10197
colorama==0.4.6;python_version<"3.6"
10298
colorama==0.4.5;python_version>="3.6" and python_version<"3.7"
10399
colorama==0.4.6;python_version>="3.7"

seleniumbase/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# seleniumbase package
2-
__version__ = "4.9.0"
2+
__version__ = "4.9.1"

setup.py

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -218,10 +218,6 @@
218218
'cryptography==38.0.3;python_version>="3.7"',
219219
'pygments==2.5.2;python_version<"3.6"',
220220
'pygments==2.13.0;python_version>="3.6"',
221-
"wmctrl==0.4",
222-
"pyrepl==0.9.0",
223-
"fancycompleter==0.9.1",
224-
"pdbpp==0.10.3",
225221
'colorama==0.4.6;python_version<"3.6"',
226222
'colorama==0.4.5;python_version>="3.6" and python_version<"3.7"',
227223
'colorama==0.4.6;python_version>="3.7"',
@@ -259,6 +255,21 @@
259255
'pycodestyle==2.5.0;python_version<"3.6"',
260256
'pycodestyle==2.9.1;python_version>="3.6"',
261257
],
258+
# pip install -e .[ipdb]
259+
"ipdb": [
260+
"ipdb==0.13.9",
261+
"ipython==7.34.0",
262+
"jedi==0.18.2",
263+
"parso==0.8.3",
264+
],
265+
# pip install -e .[pdbpp]
266+
# (Currently Mac/Linux only until fixed on Windows)
267+
"pdbpp": [
268+
"pdbpp==0.10.3",
269+
"fancycompleter==0.9.1",
270+
"pyrepl==0.9.0",
271+
"wmctrl==0.4",
272+
],
262273
# pip install -e .[pdfminer]
263274
"pdfminer": [
264275
'pdfminer.six==20191110;python_version<"3.6"',

0 commit comments

Comments
 (0)