Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust to CAP 2024.09-12 #190

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions StableCategories/PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "StableCategories",
Subtitle := "Stable categories of additive categories",
Version := "2023.03-01",
Version := "2024.09-01",
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)( ),
License := "GPL-2.0-or-later",

Expand Down Expand Up @@ -70,7 +70,7 @@ PackageDoc := rec(

Dependencies := rec(
GAP := ">= 4.12.1",
NeededOtherPackages := [ [ "CAP", ">= 2022.10-09" ],
NeededOtherPackages := [ [ "CAP", ">= 2024.09-12" ],
[ "GAPDoc", ">= 1.5" ],
[ "TriangulatedCategories", ">= 2021.11-01" ],
[ "QuotientCategories", ">= 2020.07.05" ],
Expand Down
10 changes: 10 additions & 0 deletions StableCategories/gap/FrobeniusCategories.gi
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,16 @@ return_type := "morphism" )

CAP_INTERNAL_ENHANCE_NAME_RECORD( FROBENIUS_CATEGORIES_METHOD_NAME_RECORD );

CAP_INTERNAL_GENERATE_DECLARATIONS_AND_INSTALLATIONS_FROM_METHOD_NAME_RECORD(
FROBENIUS_CATEGORIES_METHOD_NAME_RECORD,
"StableCategories",
"FrobeniusCategories",
"operations for Frobenius categories",
"Add-methods"
);

CAP_INTERNAL_REGISTER_METHOD_NAME_RECORD_OF_PACKAGE( FROBENIUS_CATEGORIES_METHOD_NAME_RECORD, "StableCategories" );

CAP_INTERNAL_INSTALL_ADDS_FROM_RECORD( FROBENIUS_CATEGORIES_METHOD_NAME_RECORD );

########################################
Expand Down
10 changes: 10 additions & 0 deletions StableCategories/gap/StableCategories.gi
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,16 @@ WitnessForBeingColiftableAlongMorphismToColiftingObject := rec(

CAP_INTERNAL_ENHANCE_NAME_RECORD( STABLE_CATEGORIES_METHOD_NAME_RECORD );

CAP_INTERNAL_GENERATE_DECLARATIONS_AND_INSTALLATIONS_FROM_METHOD_NAME_RECORD(
STABLE_CATEGORIES_METHOD_NAME_RECORD,
"StableCategories",
"StableCategories",
"operations for stable categories",
"Add-methods"
);

CAP_INTERNAL_REGISTER_METHOD_NAME_RECORD_OF_PACKAGE( STABLE_CATEGORIES_METHOD_NAME_RECORD, "StableCategories" );

CAP_INTERNAL_INSTALL_ADDS_FROM_RECORD( STABLE_CATEGORIES_METHOD_NAME_RECORD );

########################
Expand Down
4 changes: 2 additions & 2 deletions TriangulatedCategories/PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SetPackageInfo( rec(

PackageName := "TriangulatedCategories",
Subtitle := "Framework for triangulated categories",
Version := "2024.09-02",
Version := "2024.09-03",
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)( ),
License := "GPL-2.0-or-later",

Expand Down Expand Up @@ -70,7 +70,7 @@ PackageDoc := rec(

Dependencies := rec(
GAP := ">= 4.12.1",
NeededOtherPackages := [ [ "GAPDoc", ">= 1.5" ], [ "CAP", ">= 2022.10-09" ] ],
NeededOtherPackages := [ [ "GAPDoc", ">= 1.5" ], [ "CAP", ">= 2024.09-12" ] ],
SuggestedOtherPackages := [ ],
ExternalConditions := [ ],
),
Expand Down
4 changes: 2 additions & 2 deletions TriangulatedCategories/gap/MethodRecord.gi
Original file line number Diff line number Diff line change
Expand Up @@ -263,10 +263,10 @@ InverseShiftFactoringIsomorphismWithGivenObjects := rec(

CAP_INTERNAL_ENHANCE_NAME_RECORD( TRIANGULATED_CATEGORIES_METHOD_NAME_RECORD );

CAP_INTERNAL_GENERATE_DOCUMENTATION_FROM_METHOD_NAME_RECORD(
CAP_INTERNAL_GENERATE_DECLARATIONS_AND_INSTALLATIONS_FROM_METHOD_NAME_RECORD(
TRIANGULATED_CATEGORIES_METHOD_NAME_RECORD,
"TriangulatedCategories",
"MethodRecord.autogen.gd",
"MethodRecord",
"operations for triangulated categories",
"Add-methods"
);
Expand Down
Loading
Loading