Skip to content

Commit a42f13d

Browse files
committed
Update Python dependencies
1 parent 97ae35b commit a42f13d

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ pip>=21.0.1;python_version>="3.6"
33
packaging>=20.9
44
setuptools>=44.1.1;python_version<"3.5"
55
setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"
6-
setuptools>=54.1.1;python_version>="3.6"
6+
setuptools>=54.1.2;python_version>="3.6"
77
setuptools-scm>=5.0.2
88
wheel>=0.36.2
99
attrs>=20.3.0
@@ -58,7 +58,7 @@ pygments==2.8.1;python_version>="3.5"
5858
traitlets==4.3.3;python_version<"3.7"
5959
traitlets==5.0.5;python_version>="3.7"
6060
prompt-toolkit==1.0.18;python_version<"3.6"
61-
prompt-toolkit==3.0.16;python_version>="3.6"
61+
prompt-toolkit==3.0.17;python_version>="3.6"
6262
ipython==5.10.0;python_version<"3.5"
6363
ipython==6.5.0;python_version>="3.5" and python_version<"3.6"
6464
ipython==7.16.1;python_version>="3.6" and python_version<"3.7"
@@ -91,8 +91,8 @@ pdfminer.six==20201018;python_version>="3.5"
9191
coverage==5.5
9292
pytest-cov==2.11.1
9393
flake8==3.7.9;python_version<"3.5"
94-
flake8==3.8.4;python_version>="3.5"
94+
flake8==3.9.0;python_version>="3.5"
9595
pyflakes==2.1.1;python_version<"3.5"
96-
pyflakes==2.2.0;python_version>="3.5"
96+
pyflakes==2.3.0;python_version>="3.5"
9797
pycodestyle==2.5.0;python_version<"3.5"
98-
pycodestyle==2.6.0;python_version>="3.5"
98+
pycodestyle==2.7.0;python_version>="3.5"

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
'>>> Confirm release PUBLISH to PyPI? (yes/no): ')).lower().strip()
3838
if reply == 'yes':
3939
print("\n*** Checking code health with flake8:\n")
40-
os.system("python -m pip install 'flake8==3.8.4'")
40+
os.system("python -m pip install 'flake8==3.9.0'")
4141
flake8_status = os.system("flake8 --exclude=temp")
4242
if flake8_status != 0:
4343
print("\nWARNING! Fix flake8 issues before publishing to PyPI!\n")
@@ -108,7 +108,7 @@
108108
'packaging>=20.9',
109109
'setuptools>=44.1.1;python_version<"3.5"',
110110
'setuptools>=50.3.2;python_version>="3.5" and python_version<"3.6"',
111-
'setuptools>=54.1.1;python_version>="3.6"',
111+
'setuptools>=54.1.2;python_version>="3.6"',
112112
'setuptools-scm>=5.0.2',
113113
'wheel>=0.36.2',
114114
'attrs>=20.3.0',
@@ -163,7 +163,7 @@
163163
'traitlets==4.3.3;python_version<"3.7"',
164164
'traitlets==5.0.5;python_version>="3.7"',
165165
'prompt-toolkit==1.0.18;python_version<"3.6"',
166-
'prompt-toolkit==3.0.16;python_version>="3.6"',
166+
'prompt-toolkit==3.0.17;python_version>="3.6"',
167167
'ipython==5.10.0;python_version<"3.5"',
168168
'ipython==6.5.0;python_version>="3.5" and python_version<"3.6"',
169169
'ipython==7.16.1;python_version>="3.6" and python_version<"3.7"',
@@ -199,11 +199,11 @@
199199
# pip install -e .[flake]
200200
'flake': [
201201
'flake8==3.7.9;python_version<"3.5"',
202-
'flake8==3.8.4;python_version>="3.5"',
202+
'flake8==3.9.0;python_version>="3.5"',
203203
'pyflakes==2.1.1;python_version<"3.5"',
204-
'pyflakes==2.2.0;python_version>="3.5"',
204+
'pyflakes==2.3.0;python_version>="3.5"',
205205
'pycodestyle==2.5.0;python_version<"3.5"',
206-
'pycodestyle==2.6.0;python_version>="3.5"',
206+
'pycodestyle==2.7.0;python_version>="3.5"',
207207
],
208208
},
209209
packages=[

0 commit comments

Comments
 (0)