Skip to content

Commit 40055a3

Browse files
authored
Merge pull request #916 from markbeierl/913-PyYAML-Pin
#916 There is no reason to believe that future versions of PyYAML will not be compatible with this package, so we are removing this is an upper bound #### Description Python libjuju cannot be installed with the latest version of PyYAML (6.0.1), which fixes a [breaking change](yaml/pyyaml#601) caused by an update to CPython. Fixes: #913 By removing the upper constraint on PyYAML, we can allow for future updates to this package to work with ours. QA Steps Attempt to install both PyYAML 6.0.1 and Python Juju at the same time: ``` pip install -e . pyyaml==6.0.1 ```
2 parents b79d066 + 9c9f0ac commit 40055a3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
install_requires=[
3434
'macaroonbakery>=1.1,<2.0',
3535
'pyRFC3339>=1.0,<2.0',
36-
'pyyaml>=5.1.2,<=6.0',
36+
'pyyaml>=5.1.2',
3737
'theblues>=0.5.1,<1.0',
3838
'websockets>=7.0,<8.0 ; python_version<"3.9"',
3939
'websockets>=8.0,<9.0 ; python_version=="3.9"',

0 commit comments

Comments
 (0)