Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-http-ece for openSUSE:Factory
checked in at 2023-02-21 15:36:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-http-ece (Old)
and /work/SRC/openSUSE:Factory/.python-http-ece.new.22824 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-http-ece"
Tue Feb 21 15:36:21 2023 rev:4 rq:1066900 version:1.1.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-http-ece/python-http-ece.changes
2022-03-24 22:57:56.420247052 +0100
+++
/work/SRC/openSUSE:Factory/.python-http-ece.new.22824/python-http-ece.changes
2023-02-21 15:36:32.996462131 +0100
@@ -1,0 +2,5 @@
+Tue Feb 21 04:21:52 UTC 2023 - Steve Kowalik <[email protected]>
+
+- Stop test_ece.py using removed cryptography methods.
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-http-ece.spec ++++++
--- /var/tmp/diff_new_pack.chY0GE/_old 2023-02-21 15:36:34.000467901 +0100
+++ /var/tmp/diff_new_pack.chY0GE/_new 2023-02-21 15:36:34.040468131 +0100
@@ -1,7 +1,7 @@
#
# spec file for package python-http-ece
#
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
++++++ test_ece.py ++++++
--- /var/tmp/diff_new_pack.chY0GE/_old 2023-02-21 15:36:34.384470108 +0100
+++ /var/tmp/diff_new_pack.chY0GE/_new 2023-02-21 15:36:34.388470131 +0100
@@ -53,7 +53,10 @@
def setUp(self):
self.private_key = make_key()
- self.dh = self.private_key.public_key().public_numbers().encode_point()
+ self.dh = self.private_key.public_key().public_bytes(
+ Encoding.X962,
+ PublicFormat.UncompressedPoint
+ )
self.m_key = os.urandom(16)
self.m_salt = os.urandom(16)