Skip to content

Commit

Permalink
Merge pull request #18 from mohamed-barakat/devel
Browse files Browse the repository at this point in the history
LoadPackage( "Digraphs" ) in 100_LoadPackage.tst
  • Loading branch information
mohamed-barakat authored Jun 24, 2023
2 parents 7d5a41e + 9b70bb4 commit d55e5d2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "MatroidGeneration",
Subtitle := "Generate low-rank matroids",
Version := "2023.06-02",
Version := "2023.06-03",

Date := ~.Version{[ 1 .. 10 ]},
Date := (function ( ) if IsBound( GAPInfo.SystemEnvironment.GAP_PKG_RELEASE_DATE ) then return GAPInfo.SystemEnvironment.GAP_PKG_RELEASE_DATE; else return Concatenation( ~.Version{[ 1 .. 4 ]}, "-", ~.Version{[ 6, 7 ]}, "-01" ); fi; end)( ),
Expand Down
4 changes: 4 additions & 0 deletions tst/100_LoadPackage.tst
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@
gap> PushOptions( rec( OnlyNeeded := true ) );
gap> package_loading_info_level := InfoLevel( InfoPackageLoading );;
gap> SetInfoLevel( InfoPackageLoading, PACKAGE_ERROR );;
gap> LoadPackage( "Digraphs", false );
true
gap> LoadPackage( "ZariskiFrames", false );
true
gap> LoadPackage( "IO_ForHomalg", false );
true
gap> LoadPackage( "MatroidGeneration", false );
true
gap> SetInfoLevel( InfoPackageLoading, PACKAGE_INFO );;
gap> LoadPackage( "Digraphs" );
true
gap> LoadPackage( "ZariskiFrames" );
true
gap> LoadPackage( "IO_ForHomalg" );
Expand Down

0 comments on commit d55e5d2

Please sign in to comment.