Created
December 5, 2024 00:56
-
-
Save dimaqq/e6f3bd2e9aefddfa4036bab109f557dc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --color=auto -ur juju-2.9.49.0/PKG-INFO juju-2.9.49.1/PKG-INFO | |
--- juju-2.9.49.0/PKG-INFO 2024-05-02 19:20:55 | |
+++ juju-2.9.49.1/PKG-INFO 2024-11-29 16:15:21 | |
@@ -1,6 +1,6 @@ | |
Metadata-Version: 2.1 | |
Name: juju | |
-Version: 2.9.49.0 | |
+Version: 2.9.49.1 | |
Summary: Python library for Juju | |
Home-page: https://github.com/juju/python-libjuju | |
Maintainer: Juju Ecosystem Engineering | |
@@ -24,7 +24,7 @@ | |
Requires-Dist: theblues<1.0,>=0.5.1 | |
Requires-Dist: websockets<8.0,>=7.0; python_version < "3.9" | |
Requires-Dist: websockets<9.0,>=8.0; python_version == "3.9" | |
-Requires-Dist: websockets>=9.0; python_version > "3.9" | |
+Requires-Dist: websockets<14.0,>=9.0; python_version > "3.9" | |
Requires-Dist: paramiko<3.0.0,>=2.4.0 | |
Requires-Dist: pyasn1>=0.4.4 | |
Requires-Dist: toposort<2,>=1.5 | |
@@ -168,6 +168,13 @@ | |
Changelog | |
--------- | |
+ | |
+2.9.49.1 | |
+^^^^^^^^ | |
+ | |
+Friday, November 29th, 2024 | |
+ | |
+* Set an upper bound on the websockets dependency | |
2.9.49.0 | |
^^^^^^^^ | |
diff --color=auto -ur juju-2.9.49.0/VERSION juju-2.9.49.1/VERSION | |
--- juju-2.9.49.0/VERSION 2024-05-02 19:18:13 | |
+++ juju-2.9.49.1/VERSION 2024-11-29 16:11:45 | |
@@ -1 +1 @@ | |
-2.9.49.0 | |
+2.9.49.1 | |
diff --color=auto -ur juju-2.9.49.0/docs/changelog.rst juju-2.9.49.1/docs/changelog.rst | |
--- juju-2.9.49.0/docs/changelog.rst 2024-05-02 19:18:13 | |
+++ juju-2.9.49.1/docs/changelog.rst 2024-11-29 16:11:39 | |
@@ -1,6 +1,13 @@ | |
Changelog | |
--------- | |
+2.9.49.1 | |
+^^^^^^^^ | |
+ | |
+Friday, November 29th, 2024 | |
+ | |
+* Set an upper bound on the websockets dependency | |
+ | |
2.9.49.0 | |
^^^^^^^^ | |
diff --color=auto -ur juju-2.9.49.0/juju.egg-info/PKG-INFO juju-2.9.49.1/juju.egg-info/PKG-INFO | |
--- juju-2.9.49.0/juju.egg-info/PKG-INFO 2024-05-02 19:20:55 | |
+++ juju-2.9.49.1/juju.egg-info/PKG-INFO 2024-11-29 16:15:21 | |
@@ -1,6 +1,6 @@ | |
Metadata-Version: 2.1 | |
Name: juju | |
-Version: 2.9.49.0 | |
+Version: 2.9.49.1 | |
Summary: Python library for Juju | |
Home-page: https://github.com/juju/python-libjuju | |
Maintainer: Juju Ecosystem Engineering | |
@@ -24,7 +24,7 @@ | |
Requires-Dist: theblues<1.0,>=0.5.1 | |
Requires-Dist: websockets<8.0,>=7.0; python_version < "3.9" | |
Requires-Dist: websockets<9.0,>=8.0; python_version == "3.9" | |
-Requires-Dist: websockets>=9.0; python_version > "3.9" | |
+Requires-Dist: websockets<14.0,>=9.0; python_version > "3.9" | |
Requires-Dist: paramiko<3.0.0,>=2.4.0 | |
Requires-Dist: pyasn1>=0.4.4 | |
Requires-Dist: toposort<2,>=1.5 | |
@@ -168,6 +168,13 @@ | |
Changelog | |
--------- | |
+ | |
+2.9.49.1 | |
+^^^^^^^^ | |
+ | |
+Friday, November 29th, 2024 | |
+ | |
+* Set an upper bound on the websockets dependency | |
2.9.49.0 | |
^^^^^^^^ | |
diff --color=auto -ur juju-2.9.49.0/juju.egg-info/requires.txt juju-2.9.49.1/juju.egg-info/requires.txt | |
--- juju-2.9.49.0/juju.egg-info/requires.txt 2024-05-02 19:20:55 | |
+++ juju-2.9.49.1/juju.egg-info/requires.txt 2024-11-29 16:15:21 | |
@@ -15,4 +15,4 @@ | |
websockets<9.0,>=8.0 | |
[:python_version > "3.9"] | |
-websockets>=9.0 | |
+websockets<14.0,>=9.0 | |
diff --color=auto -ur juju-2.9.49.0/setup.py juju-2.9.49.1/setup.py | |
--- juju-2.9.49.0/setup.py 2024-05-02 19:18:13 | |
+++ juju-2.9.49.1/setup.py 2024-11-29 16:12:15 | |
@@ -27,7 +27,7 @@ | |
'theblues>=0.5.1,<1.0', | |
'websockets>=7.0,<8.0 ; python_version<"3.9"', | |
'websockets>=8.0,<9.0 ; python_version=="3.9"', | |
- 'websockets>=9.0; python_version>"3.9"', | |
+ 'websockets>=9.0,<14.0 ; python_version>"3.9"', | |
'paramiko>=2.4.0,<3.0.0', | |
'pyasn1>=0.4.4', | |
'toposort>=1.5,<2', |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment