Skip to content

Commit ee2d894

Browse files
committed
Update Python dependencies
1 parent 7a6c6ca commit ee2d894

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ packaging>=20.9
44
typing-extensions>=3.10.0.0
55
setuptools>=44.1.1;python_version<"3.5"
66
setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"
7-
setuptools>=56.1.0;python_version>="3.6"
7+
setuptools>=56.2.0;python_version>="3.6"
88
setuptools-scm==5.0.2;python_version<"3.6"
99
setuptools-scm>=6.0.1;python_version>="3.6"
1010
wheel>=0.36.2
@@ -63,7 +63,8 @@ traitlets==4.3.3;python_version<"3.7"
6363
traitlets==5.0.5;python_version>="3.7"
6464
prompt-toolkit==1.0.18;python_version<"3.6"
6565
prompt-toolkit==3.0.18;python_version>="3.6"
66-
decorator==4.4.2
66+
decorator==4.4.2;python_version<"3.5"
67+
decorator==5.0.7;python_version>="3.5"
6768
ipython==5.10.0;python_version<"3.5"
6869
ipython==6.5.0;python_version>="3.5" and python_version<"3.6"
6970
ipython==7.16.1;python_version>="3.6" and python_version<"3.7"
@@ -94,7 +95,7 @@ pdfminer.six==20201018;python_version>="3.5"
9495
coverage==5.5
9596
pytest-cov==2.11.1
9697
flake8==3.7.9;python_version<"3.5"
97-
flake8==3.9.1;python_version>="3.5"
98+
flake8==3.9.2;python_version>="3.5"
9899
pyflakes==2.1.1;python_version<"3.5"
99100
pyflakes==2.3.1;python_version>="3.5"
100101
pycodestyle==2.5.0;python_version<"3.5"

setup.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
(Uses selenium 3.x and is compatible with Python 2.7+ and Python 3.5+)
44
"""
55

6-
from setuptools import setup, find_packages # noqa
6+
from setuptools import setup, find_packages # noqa: F401
77
import os
88
import sys
99

@@ -31,12 +31,12 @@
3131
reply = None
3232
input_method = input
3333
if not sys.version_info[0] >= 3:
34-
input_method = raw_input # noqa
34+
input_method = raw_input # noqa: F821
3535
confirm_text = ">>> Confirm release PUBLISH to PyPI? (yes/no): "
3636
reply = str(input_method(confirm_text)).lower().strip()
3737
if reply == "yes":
3838
print("\n*** Checking code health with flake8:\n")
39-
os.system("python -m pip install 'flake8==3.9.1'")
39+
os.system("python -m pip install 'flake8==3.9.2'")
4040
flake8_status = os.system("flake8 --exclude=temp")
4141
if flake8_status != 0:
4242
print("\nWARNING! Fix flake8 issues before publishing to PyPI!\n")
@@ -119,7 +119,7 @@
119119
"typing-extensions>=3.10.0.0",
120120
'setuptools>=44.1.1;python_version<"3.5"',
121121
'setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"',
122-
'setuptools>=56.1.0;python_version>="3.6"',
122+
'setuptools>=56.2.0;python_version>="3.6"',
123123
'setuptools-scm==5.0.2;python_version<"3.6"',
124124
'setuptools-scm>=6.0.1;python_version>="3.6"',
125125
"wheel>=0.36.2",
@@ -178,7 +178,8 @@
178178
'traitlets==5.0.5;python_version>="3.7"',
179179
'prompt-toolkit==1.0.18;python_version<"3.6"',
180180
'prompt-toolkit==3.0.18;python_version>="3.6"',
181-
"decorator==4.4.2",
181+
'decorator==4.4.2;python_version<"3.5"',
182+
'decorator==5.0.7;python_version>="3.5"',
182183
'ipython==5.10.0;python_version<"3.5"',
183184
'ipython==6.5.0;python_version>="3.5" and python_version<"3.6"',
184185
'ipython==7.16.1;python_version>="3.6" and python_version<"3.7"',
@@ -212,7 +213,7 @@
212213
# pip install -e .[flake]
213214
"flake": [
214215
'flake8==3.7.9;python_version<"3.5"',
215-
'flake8==3.9.1;python_version>="3.5"',
216+
'flake8==3.9.2;python_version>="3.5"',
216217
'pyflakes==2.1.1;python_version<"3.5"',
217218
'pyflakes==2.3.1;python_version>="3.5"',
218219
'pycodestyle==2.5.0;python_version<"3.5"',

0 commit comments

Comments
 (0)