Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 9 additions & 22 deletions src/BaselineOfPolyMath/BaselineOfPolyMath.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,15 @@ BaselineOfPolyMath >> baseline: spec [
<baseline>
spec
for: #common
do: [ "Dependencies"
self
sMark: spec;
xmlWriter: spec.

"Packages"
do: [
spec blessing: #baseline.
spec repository: 'https://github.com/PolyMathOrg/PolyMath'.
spec
baseline: 'SMark'
with: [ spec repository: 'github://smarr/SMark:v1.0.4/repository' ];
baseline: 'XMLWriter'
with: [ spec
repository: 'github://pharo-contributions/XML-XMLWriter:2.9.0/src' ].
spec
package: 'ExtendedNumberParser';
package: 'Math-Accuracy-Core';
Expand Down Expand Up @@ -147,8 +150,6 @@ BaselineOfPolyMath >> baseline: spec [
package: 'Math-Tests-TSNE'
with: [ spec requires: #('Math-TSNE') ];
package: 'Math-UtilsDataServer'.

"Groups"
spec
group: 'Accuracy'
with: #('Math-Accuracy-ODE' 'Math-Accuracy-Core');
Expand All @@ -173,17 +174,3 @@ BaselineOfPolyMath >> projectClass [
on: NotFound
do: [ super projectClass ]
]

{ #category : #dependencies }
BaselineOfPolyMath >> sMark: spec [
spec
baseline: 'SMark'
with: [ spec repository: 'github://smarr/SMark:v1.0.4/repository' ]
]

{ #category : #dependencies }
BaselineOfPolyMath >> xmlWriter: spec [
spec
baseline: 'XMLWriter'
with: [ spec repository: 'github://pharo-contributions/XML-XMLWriter:2.9.0/src' ]
]