We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f52bba commit f0b583dCopy full SHA for f0b583d
setup.py
@@ -39,7 +39,9 @@
39
],
40
tests_require=['mock', 'pytest'],
41
extras_require={
42
- 'yaml': ['PyYAML>=3.10'],
+ # N.B. PyYAML 5.3 dropped support for Python 3.4... which we should
43
+ # also do...
44
+ 'yaml': ['PyYAML>=3.10,<5.3'],
45
':python_version < "3"': ['urllib3[secure]'],
46
},
47
classifiers=[
tox.ini
@@ -15,7 +15,7 @@ usedevelop = true
15
deps =
16
mock
17
pytest
18
- pyyaml: PyYAML>=3.10
+ pyyaml: PyYAML>=3.10,<5.3
19
cov3: coverage<4.0
20
cov4: coverage>=4.0,<4.1
21
cov41: coverage>=4.1,<5.0
0 commit comments