Skip to content

Commit 1336e19

Browse files
committed
Update Python dependencies
1 parent c5a6af0 commit 1336e19

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

requirements.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ soupsieve==1.9.6;python_version<"3.5"
4646
soupsieve==2.0.1;python_version>="3.5" and python_version<"3.6"
4747
soupsieve==2.1;python_version>="3.6"
4848
beautifulsoup4==4.9.3
49-
cryptography==3.0;python_version<"3.6"
49+
cryptography==2.9.2;python_version<"3.5"
50+
cryptography==3.0;python_version>="3.5" and python_version<"3.6"
5051
cryptography==3.3.1;python_version>="3.6"
5152
pyopenssl==19.1.0;python_version<"3.6"
5253
pyopenssl==20.0.1;python_version>="3.6"
@@ -64,7 +65,8 @@ colorama==0.4.4
6465
pathlib2==2.3.5;python_version<"3.5"
6566
importlib-metadata==2.0.0;python_version<"3.6"
6667
virtualenv>=20.2.2
67-
pymysql==0.10.1
68+
pymysql==0.10.1;python_version<"3.6"
69+
pymysql==1.0.0;python_version>="3.6"
6870
coverage==5.3.1
6971
brython==3.9.1
7072
pyotp==2.4.1

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@
150150
'soupsieve==2.0.1;python_version>="3.5" and python_version<"3.6"',
151151
'soupsieve==2.1;python_version>="3.6"',
152152
'beautifulsoup4==4.9.3',
153-
'cryptography==3.0;python_version<"3.6"',
153+
'cryptography==2.9.2;python_version<"3.5"',
154+
'cryptography==3.0;python_version>="3.5" and python_version<"3.6"',
154155
'cryptography==3.3.1;python_version>="3.6"',
155156
'pyopenssl==19.1.0;python_version<"3.6"',
156157
'pyopenssl==20.0.1;python_version>="3.6"',
@@ -168,7 +169,8 @@
168169
'pathlib2==2.3.5;python_version<"3.5"', # Sync with "virtualenv"
169170
'importlib-metadata==2.0.0;python_version<"3.6"', # Sync "virtualenv"
170171
'virtualenv>=20.2.2', # Sync with importlib-metadata and pathlib2
171-
'pymysql==0.10.1',
172+
'pymysql==0.10.1;python_version<"3.6"',
173+
'pymysql==1.0.0;python_version>="3.6"',
172174
'coverage==5.3.1',
173175
'brython==3.9.1',
174176
'pyotp==2.4.1',

0 commit comments

Comments
 (0)