Salome HOME
Ensure cmake_build_type is used in SALOME 9.12.0
[tools/sat_salome.git] / products / patches / pyfmi-2.6-python-3.1x.01.patch
1 diff -Naur PyFMI-PyFMI-2.6_ref/src/pyfmi/fmi_util.pyx  PyFMI-PyFMI-2.6_dev/src/pyfmi/fmi_util.pyx
2 --- PyFMI-PyFMI-2.6_ref/src/pyfmi/fmi_util.pyx  2020-03-04 22:13:53.000000000 +0100
3 +++ PyFMI-PyFMI-2.6_dev/src/pyfmi/fmi_util.pyx  2023-04-11 15:56:56.752107408 +0200
4 @@ -465,7 +465,7 @@
5                  self._strongly_connected_components(node)
6          return self.connected_components
7  """
8 -class OrderedSet(collections.MutableSet):
9 +class OrderedSet(collections.abc.MutableSet):
10  
11      def __init__(self, iterable=None):
12          self.end = end = []