Skip to content

Commit

Permalink
Add missing DataFrame dependency to BaselineOf
Browse files Browse the repository at this point in the history
  • Loading branch information
Hernán Morales Durand committed Sep 15, 2023
1 parent 031672d commit 9d8f4bc
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ BaselineOfBioSmalltalk >> baseline: spec [
projectSpecForStringExtensions: spec;
projectSpecForFileDialog: spec;
projectSpecForPolyMath: spec;
projectSpecForDataFrame: spec;
projectSpecForINIParser: spec;
projectSpecForPetitParser: spec.
"projectSpecForRoassal2: spec."
Expand Down Expand Up @@ -154,7 +155,7 @@ BaselineOfBioSmalltalk >> baselinePackages: spec [
"package: 'BioProject' with: [ spec requires: #('BioTools' 'ProjectFramework' ). ];
package: 'BioProjectTests' with: [ spec requires: #('BioProject' ). ];"
package: 'BioSoftwareCatalog' with: [ spec requires: #('BioTools' ). ];
package: 'BioSupport' with: [ spec requires: #('BioTools'). ];
package: 'BioSupport' with: [ spec requires: #('BioTools' 'DataFrame'). ];
package: 'BioTools' with: [ spec
requires: #('CommonUtils' 'StringExtensions' 'PetitParser2Core' 'PolyMath' 'XMLParser' 'XMLPullParser');
includes: #('BioPharoCommon') ];
Expand Down Expand Up @@ -299,6 +300,14 @@ BaselineOfBioSmalltalk >> projectSpecForDataDrameInspector: spec [

]

{ #category : #specs }
BaselineOfBioSmalltalk >> projectSpecForDataFrame: spec [

spec
baseline: 'DataFrame'
with: [ spec repository: 'github://PolyMathOrg/DataFrame/src' ].
]

{ #category : #specs }
BaselineOfBioSmalltalk >> projectSpecForFileDialog: spec [

Expand Down

0 comments on commit 9d8f4bc

Please sign in to comment.