Skip to content

Commit e5b0df8

Browse files
committed
changed baseline to use latest version of vector-matrix
1 parent ceb76f2 commit e5b0df8

2 files changed

Lines changed: 17 additions & 16 deletions

File tree

src/BaselineOfPolyMath/BaselineOfPolyMath.class.st

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@ PolyMath is a Smalltalk project, similar to existing scientific libraries like N
1010
1111
"
1212
Class {
13-
#name : #BaselineOfPolyMath,
14-
#superclass : #BaselineOf,
15-
#category : #BaselineOfPolyMath
13+
#name : 'BaselineOfPolyMath',
14+
#superclass : 'BaselineOf',
15+
#category : 'BaselineOfPolyMath',
16+
#package : 'BaselineOfPolyMath'
1617
}
1718

18-
{ #category : #baselines }
19+
{ #category : 'baselines' }
1920
BaselineOfPolyMath >> baseline: spec [
2021

2122
<baseline>
@@ -41,23 +42,23 @@ BaselineOfPolyMath >> baseline: spec [
4142
package: 'Math-CompatibilityUpToPharo11' ]
4243
]
4344

44-
{ #category : #dependencies }
45+
{ #category : 'dependencies' }
4546
BaselineOfPolyMath >> dataFrameInspector: spec [
4647

4748
spec
4849
baseline: 'AIDataFrameInspector'
4950
with: [ spec repository: 'github://pharo-ai/data-inspector/src' ]
5051
]
5152

52-
{ #category : #dependencies }
53+
{ #category : 'dependencies' }
5354
BaselineOfPolyMath >> datasets: spec [
5455

5556
spec
5657
baseline: 'AIDatasets'
5758
with: [ spec repository: 'github://pharo-ai/datasets' ].
5859
]
5960

60-
{ #category : #baselines }
61+
{ #category : 'baselines' }
6162
BaselineOfPolyMath >> groups: spec [
6263

6364
spec
@@ -98,7 +99,7 @@ BaselineOfPolyMath >> groups: spec [
9899
with: #( 'Core' 'Extensions' 'Tests' 'Benchmarks' 'Accuracy' )
99100
]
100101

101-
{ #category : #baselines }
102+
{ #category : 'baselines' }
102103
BaselineOfPolyMath >> packages: spec [
103104

104105
spec
@@ -204,40 +205,40 @@ BaselineOfPolyMath >> packages: spec [
204205
with: [ spec requires: #( 'AIDatasets' 'AIDataFrameInspector') ]
205206
]
206207

207-
{ #category : #accessing }
208+
{ #category : 'accessing' }
208209
BaselineOfPolyMath >> projectClass [
209210
^ [ self class environment at: #MetacelloCypressBaselineProject ]
210211
on: NotFound
211212
do: [ super projectClass ]
212213
]
213214

214-
{ #category : #dependencies }
215+
{ #category : 'dependencies' }
215216
BaselineOfPolyMath >> randomNumbers: spec [
216217

217218
spec baseline: 'MathRandomNumbers' with: [ spec repository: 'github://PolyMathOrg/random-numbers:v1.x.x/src' ]
218219
]
219220

220-
{ #category : #dependencies }
221+
{ #category : 'dependencies' }
221222
BaselineOfPolyMath >> roassal: spec [
222223

223224
spec
224225
baseline: 'Roassal'
225226
with: [ spec repository: 'github://pharo-graphics/Roassal' ].
226227
]
227228

228-
{ #category : #dependencies }
229+
{ #category : 'dependencies' }
229230
BaselineOfPolyMath >> sMark: spec [
230231

231232
spec baseline: 'SMark' with: [ spec repository: 'github://smarr/SMark:v1.0.4' ]
232233
]
233234

234-
{ #category : #dependencies }
235+
{ #category : 'dependencies' }
235236
BaselineOfPolyMath >> vectorMatrix: spec [
236237

237-
spec baseline: 'MathVectorMatrix' with: [ spec repository: 'github://PolyMathOrg/vector-matrix:v1.x.x/src' ]
238+
spec baseline: 'MathVectorMatrix' with: [ spec repository: 'github://PolyMathOrg/vector-matrix/src' ]
238239
]
239240

240-
{ #category : #dependencies }
241+
{ #category : 'dependencies' }
241242
BaselineOfPolyMath >> xmlWriter: spec [
242243

243244
spec baseline: 'XMLWriter' with: [ spec repository: 'github://pharo-contributions/XML-XMLWriter:2.9.x/src' ]

src/BaselineOfPolyMath/package.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Package { #name : #BaselineOfPolyMath }
1+
Package { #name : 'BaselineOfPolyMath' }

0 commit comments

Comments
 (0)