iita-python 1.2__tar.gz → 1.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: iita_python
3
- Version: 1.2
3
+ Version: 1.2.1
4
4
  Summary: IITA algorithm in python
5
5
  Author-email: Aliaksei Badnarchuk <alexejbodnarchuk@gmail.com>
6
6
  Requires-Python: >=3.9
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '1.2'
32
- __version_tuple__ = version_tuple = (1, 2)
31
+ __version__ = version = '1.2.1'
32
+ __version_tuple__ = version_tuple = (1, 2, 1)
33
33
 
34
- __commit_id__ = commit_id = 'gb97b590cd'
34
+ __commit_id__ = commit_id = 'gda19693c6'
@@ -90,12 +90,10 @@ class AdditionalCEDataset(Dataset):
90
90
  """
91
91
  super().__init__(response_patterns)
92
92
 
93
- self.pairwise_diff_ce = lambda self, relative=False: (
94
- relativify(pairwise_diff_ce) if relative else pairwise_diff_ce
95
- )(self.rp)
93
+ self.pairwise_diff_ce = lambda: pairwise_diff_ce(self.rp)
96
94
  self.pairwise_diff_ce.__doc__ = pairwise_diff_ce.__doc__
97
95
 
98
- self.missing_value_substitution_ce = lambda self, relative=False: (
96
+ self.missing_value_substitution_ce = lambda relative=False: (
99
97
  relativify(missing_value_substitution_ce) if relative else missing_value_substitution_ce
100
98
  )(self.rp)
101
99
  self.missing_value_substitution_ce.__doc__ = missing_value_substitution_ce.__doc__
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: iita_python
3
- Version: 1.2
3
+ Version: 1.2.1
4
4
  Summary: IITA algorithm in python
5
5
  Author-email: Aliaksei Badnarchuk <alexejbodnarchuk@gmail.com>
6
6
  Requires-Python: >=3.9
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes