Skip to content

Commit 25c237c

Browse files
committed
Refresh Python dependencies
1 parent c00b2b5 commit 25c237c

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

requirements.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ attrs>=21.4.0;python_version<"3.6"
1414
attrs>=22.1.0;python_version>="3.6"
1515
PyYAML>=6.0;python_version>="3.6"
1616
traitlets>=4.3.3;python_version<"3.7"
17-
traitlets>=5.3.0;python_version>="3.7"
17+
traitlets>=5.4.0;python_version>="3.7"
1818
certifi>=2021.10.8;python_version<"3.6"
19-
certifi>=2022.6.15;python_version>="3.6"
19+
certifi>=2022.6.15.2;python_version>="3.6"
2020
filelock>=3.2.1;python_version<"3.6"
2121
filelock>=3.4.1;python_version>="3.6" and python_version<"3.7"
2222
filelock>=3.8.0;python_version>="3.7"
@@ -34,7 +34,7 @@ parso==0.8.3;python_version>="3.6"
3434
jedi==0.17.2;python_version<"3.6"
3535
jedi==0.18.1;python_version>="3.6"
3636
idna==2.10;python_version<"3.6"
37-
idna==3.3;python_version>="3.6"
37+
idna==3.4;python_version>="3.6"
3838
chardet==3.0.4;python_version<"3.6"
3939
chardet==4.0.0;python_version>="3.6" and python_version<"3.7"
4040
chardet==5.0.0;python_version>="3.7"
@@ -93,7 +93,7 @@ beautifulsoup4==4.9.3;python_version<"3.6"
9393
beautifulsoup4==4.11.1;python_version>="3.6"
9494
cryptography==2.9.2;python_version<"3.6"
9595
cryptography==36.0.2;python_version>="3.6" and python_version<"3.7"
96-
cryptography==37.0.4;python_version>="3.7"
96+
cryptography==38.0.1;python_version>="3.7"
9797
pygments==2.5.2;python_version<"3.6"
9898
pygments==2.13.0;python_version>="3.6"
9999
prompt-toolkit==1.0.18;python_version<"3.6"
@@ -111,7 +111,7 @@ pycparser==2.21
111111
pymysql==0.10.1;python_version<"3.6"
112112
pymysql==1.0.2;python_version>="3.6"
113113
pyotp==2.3.0;python_version<"3.6"
114-
pyotp==2.6.0;python_version>="3.6"
114+
pyotp==2.7.0;python_version>="3.6"
115115
cffi==1.15.1
116116
toml==0.10.2
117117
typing-extensions==3.10.0.2;python_version<"3.6"

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,9 @@
140140
'attrs>=22.1.0;python_version>="3.6"',
141141
'PyYAML>=6.0;python_version>="3.6"',
142142
'traitlets>=4.3.3;python_version<"3.7"',
143-
'traitlets>=5.3.0;python_version>="3.7"',
143+
'traitlets>=5.4.0;python_version>="3.7"',
144144
'certifi>=2021.10.8;python_version<"3.6"',
145-
'certifi>=2022.6.15;python_version>="3.6"',
145+
'certifi>=2022.6.15.2;python_version>="3.6"',
146146
'filelock>=3.2.1;python_version<"3.6"',
147147
'filelock>=3.4.1;python_version>="3.6" and python_version<"3.7"',
148148
'filelock>=3.8.0;python_version>="3.7"',
@@ -160,7 +160,7 @@
160160
'jedi==0.17.2;python_version<"3.6"',
161161
'jedi==0.18.1;python_version>="3.6"',
162162
'idna==2.10;python_version<"3.6"', # Must stay in sync with "requests"
163-
'idna==3.3;python_version>="3.6"', # Must stay in sync with "requests"
163+
'idna==3.4;python_version>="3.6"', # Must stay in sync with "requests"
164164
'chardet==3.0.4;python_version<"3.6"', # Stay in sync with "requests"
165165
'chardet==4.0.0;python_version>="3.6" and python_version<"3.7"',
166166
'chardet==5.0.0;python_version>="3.7"', # Stay in sync with "requests"
@@ -218,7 +218,7 @@
218218
'beautifulsoup4==4.11.1;python_version>="3.6"',
219219
'cryptography==2.9.2;python_version<"3.6"',
220220
'cryptography==36.0.2;python_version>="3.6" and python_version<"3.7"',
221-
'cryptography==37.0.4;python_version>="3.7"',
221+
'cryptography==38.0.1;python_version>="3.7"',
222222
'pygments==2.5.2;python_version<"3.6"',
223223
'pygments==2.13.0;python_version>="3.6"',
224224
'prompt-toolkit==1.0.18;python_version<"3.6"',
@@ -236,7 +236,7 @@
236236
'pymysql==0.10.1;python_version<"3.6"',
237237
'pymysql==1.0.2;python_version>="3.6"',
238238
'pyotp==2.3.0;python_version<"3.6"',
239-
'pyotp==2.6.0;python_version>="3.6"',
239+
'pyotp==2.7.0;python_version>="3.6"',
240240
"cffi==1.15.1",
241241
"toml==0.10.2",
242242
'typing-extensions==3.10.0.2;python_version<"3.6"', # <3.9 for "rich"

0 commit comments

Comments
 (0)