Skip to content

Commit 6f2264d

Browse files
committed
Update Python package dependencies
1 parent a49a3c1 commit 6f2264d

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

requirements.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ requests==2.22.0
1212
selenium==3.141.0
1313
pluggy>=0.13.1
1414
attrs>=19.3.0
15-
pytest>=4.6.8;python_version<"3"
15+
pytest>=4.6.9;python_version<"3"
1616
pytest>=5.3.2;python_version>="3"
1717
pytest-cov>=2.8.1
1818
pytest-forked>=1.1.3
@@ -29,7 +29,7 @@ beautifulsoup4==4.8.2
2929
atomicwrites==1.3.0
3030
portalocker==1.5.2
3131
cryptography==2.8
32-
asn1crypto==1.2.0
32+
asn1crypto==1.3.0
3333
pyopenssl==19.1.0
3434
pygments==2.5.2
3535
colorama==0.4.3
@@ -41,4 +41,5 @@ cffi>=1.13.2
4141
tqdm>=4.41.1
4242
flake8==3.7.9
4343
certifi>=2019.11.28
44-
pdfminer.six==20191110
44+
pdfminer.six==20191110;python_version<"3.5"
45+
pdfminer.six==20200104;python_version>="3.5"

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
'selenium==3.141.0',
9696
'pluggy>=0.13.1',
9797
'attrs>=19.3.0',
98-
'pytest>=4.6.8;python_version<"3"', # For Python 2 compatibility
98+
'pytest>=4.6.9;python_version<"3"', # For Python 2 compatibility
9999
'pytest>=5.3.2;python_version>="3"',
100100
'pytest-cov>=2.8.1',
101101
'pytest-forked>=1.1.3',
@@ -112,7 +112,7 @@
112112
'atomicwrites==1.3.0',
113113
'portalocker==1.5.2',
114114
'cryptography==2.8',
115-
'asn1crypto==1.2.0',
115+
'asn1crypto==1.3.0',
116116
'pyopenssl==19.1.0',
117117
'pygments>=2.5.2',
118118
'colorama==0.4.3',
@@ -124,7 +124,8 @@
124124
'tqdm>=4.41.1',
125125
'flake8==3.7.9',
126126
'certifi>=2019.11.28',
127-
'pdfminer.six==20191110',
127+
'pdfminer.six==20191110;python_version<"3.5"',
128+
'pdfminer.six==20200104;python_version>="3.5"',
128129
],
129130
packages=[
130131
'seleniumbase',

0 commit comments

Comments
 (0)