Skip to content

Commit f0b583d

Browse files
committed
chore(deps): pin pyyaml to 3.4-compat version
1 parent 2f52bba commit f0b583d

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@
3939
],
4040
tests_require=['mock', 'pytest'],
4141
extras_require={
42-
'yaml': ['PyYAML>=3.10'],
42+
# N.B. PyYAML 5.3 dropped support for Python 3.4... which we should
43+
# also do...
44+
'yaml': ['PyYAML>=3.10,<5.3'],
4345
':python_version < "3"': ['urllib3[secure]'],
4446
},
4547
classifiers=[

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ usedevelop = true
1515
deps =
1616
mock
1717
pytest
18-
pyyaml: PyYAML>=3.10
18+
pyyaml: PyYAML>=3.10,<5.3
1919
cov3: coverage<4.0
2020
cov4: coverage>=4.0,<4.1
2121
cov41: coverage>=4.1,<5.0

0 commit comments

Comments
 (0)