Skip to content

Commit 51ccf58

Browse files
committed
Pharo 9 and 10 compatibility
1 parent a75141d commit 51ccf58

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

src/BaselineOfPolyMathDataStructures/BaselineOfPolyMathDataStructures.class.st

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,10 @@ BaselineOfPolyMathDataStructures >> baseline: spec [
1717

1818
spec
1919
group: 'Core' with: #( 'Math-Vector' 'Math-Matrix' );
20-
group: 'Tests' with: #( 'Math-Tests-Vector' 'Math-Tests-Matrix' ) ]
20+
group: 'Tests' with: #( 'Math-Tests-Vector' 'Math-Tests-Matrix' ) ].
21+
22+
spec for: #( #'pharo9.x' #'pharo10.x' ) do: [
23+
spec
24+
package: 'Math-Matrix' with: [ spec requires: #( 'Math-DataStructures-Pharo11' ) ];
25+
package: 'Math-DataStructures-Pharo11' ]
2126
]
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Extension { #name : #Float }
2+
3+
{ #category : #'*Math-DataStractures-Pharo11' }
4+
Float class >> machineEpsilon [
5+
6+
^ self epsilon
7+
]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Package { #name : #'Math-DataStractures-Pharo11' }

0 commit comments

Comments
 (0)