Skip to content

Commit e28c436

Browse files
comply with AutoDoc v2025.12.19
1 parent 6837b2e commit e28c436

7 files changed

Lines changed: 21 additions & 11 deletions

File tree

.github/workflows/Tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ jobs:
5656
if [ -d "CAP_project/CompilerForCAP" ]; then make -C "CAP_project/CompilerForCAP" doc; fi
5757
if [ -d "CAP_project/MonoidalCategories" ]; then make -C "CAP_project/MonoidalCategories" doc; fi
5858
if [ -d "CAP_project/CartesianCategories" ]; then make -C "CAP_project/CartesianCategories" doc; fi
59+
if [ -d "CAP_project/AdditiveClosuresForCAP" ]; then make -C "CAP_project/AdditiveClosuresForCAP" doc; fi
5960
if [ -d "CAP_project/FreydCategoriesForCAP" ]; then make -C "CAP_project/FreydCategoriesForCAP" doc; fi
6061
if [ -d "HigherHomologicalAlgebra/ToolsForHigherHomologicalAlgebra" ]; then make -C "HigherHomologicalAlgebra/ToolsForHigherHomologicalAlgebra" doc; fi
6162
if [ -d "homalg_project/homalg" ]; then make -C "homalg_project/homalg" doc; fi
@@ -81,7 +82,9 @@ jobs:
8182
TOKEN="${{ secrets.GITHUB_TOKEN }}" ./dev/simulate_dist.sh; \
8283
fi
8384
- name: Upload code coverage
84-
if: github.event_name != 'schedule' && matrix.image == 'ghcr.io/homalg-project/gap-docker-master:latest'
85+
if: github.event_name != 'schedule' && matrix.image == 'ghcr.io/homalg-project/gap-docker:latest'
86+
env:
87+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
8588
run: |
8689
cd LoopIntegrals
8790
./dev/upload_codecov.sh

PackageInfo.g

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ SetPackageInfo( rec(
1010

1111
PackageName := "LoopIntegrals",
1212
Subtitle := "Compute master integrals using commutative and noncommutative methods from computational algebraic geometry",
13-
Version := "2025.11-01",
13+
Version := "2025.12-01",
1414

1515
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)( ),
1616

dev/.release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ sed "s;Date := .*;Date := \"$(date -I)\",;" PackageInfo.g > PackageInfo.g.bak
1414
mv PackageInfo.g.bak PackageInfo.g
1515

1616
# replace links to packages which are possibly referenced in the documentation, keep this in sync with `Tests.yml.j2`
17-
for package in CAP_project/CAP CAP_project/CompilerForCAP CAP_project/MonoidalCategories CAP_project/CartesianCategories CAP_project/FreydCategoriesForCAP HigherHomologicalAlgebra/ToolsForHigherHomologicalAlgebra homalg_project/homalg homalg_project/Modules CategoricalTowers/ToolsForCategoricalTowers CategoricalTowers/Toposes; do
17+
for package in CAP_project/CAP CAP_project/CompilerForCAP CAP_project/MonoidalCategories CAP_project/CartesianCategories CAP_project/AdditiveClosuresForCAP CAP_project/FreydCategoriesForCAP HigherHomologicalAlgebra/ToolsForHigherHomologicalAlgebra homalg_project/homalg homalg_project/Modules CategoricalTowers/ToolsForCategoricalTowers CategoricalTowers/Toposes; do
1818

1919
# adjust links to other manuals
2020
# Note that we cannot use sed's `-i` option for in-place editing, as

dev/upload_codecov.sh

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,16 @@ curl -O https://uploader.codecov.io/latest/linux/codecov.SHA256SUM.sig
2121
gpgv codecov.SHA256SUM.sig codecov.SHA256SUM
2222
shasum -a 256 -c codecov.SHA256SUM
2323

24+
# read the token
25+
if [ -z "$CODECOV_TOKEN" ]; then
26+
echo -e "\033[0;33mCODECOV_TOKEN is not set. Proceeding without token.\033[0m"
27+
else
28+
echo -e "\033[0;32mUsing CODECOV_TOKEN from environment variable.\033[0m"
29+
fi
30+
2431
# execute
2532
chmod +x codecov
26-
while ! ./codecov -Z -v -s ../; do
33+
while ! ./codecov -Z -v -s ../ -t $CODECOV_TOKEN; do
2734
echo "Codecov upload failed, retrying in 60s"
2835
sleep 60
2936
done

examples/notebooks/1LoopBox.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1035,7 +1035,7 @@
10351035
"file_extension": ".jl",
10361036
"mimetype": "application/julia",
10371037
"name": "julia",
1038-
"version": "1.12.1"
1038+
"version": "1.12.3"
10391039
}
10401040
},
10411041
"nbformat": 4,

makedoc.g

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
#
44
# This file is a script which compiles the package manual.
55
#
6-
if fail = LoadPackage( "AutoDoc", "2019.05.20" ) then
6+
if fail = LoadPackage( "AutoDoc", "2025.12.19" ) then
77

8-
Error( "AutoDoc version 2019.05.20 or newer is required." );
8+
Error( "AutoDoc version 2025.12.19 or newer is required." );
99

1010
fi;
1111

@@ -25,7 +25,7 @@ AutoDoc( rec(
2525
),
2626
),
2727
scaffold := rec(
28-
entities := [ "homalg", "CAP" ],
28+
entities := rec( homalg := "homalg", CAP := "CAP" ),
2929
),
3030
) );
3131

makedoc_with_overfull_hbox_warnings.g

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
#
44
# This file is a script which compiles the package manual and prints overfull hbox warnings.
55
#
6-
if fail = LoadPackage( "AutoDoc", "2019.05.20" ) then
6+
if fail = LoadPackage( "AutoDoc", "2025.12.19" ) then
77

8-
Error( "AutoDoc version 2019.05.20 or newer is required." );
8+
Error( "AutoDoc version 2025.12.19 or newer is required." );
99

1010
fi;
1111

@@ -36,7 +36,7 @@ AutoDoc( rec(
3636
),
3737
),
3838
scaffold := rec(
39-
entities := [ "homalg", "CAP" ],
39+
entities := rec( homalg := "homalg", CAP := "CAP" ),
4040
),
4141
) );
4242

0 commit comments

Comments
 (0)