Skip to content

Commit a7e12d6

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into functorial-category-cache-key
2 parents 45e8665 + dc99dc8 commit a7e12d6

File tree

253 files changed

+4375
-1947
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

253 files changed

+4375
-1947
lines changed

.github/workflows/pyright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
eval $(sage-print-system-package-command auto --spkg --yes --no-install-recommends install git)
3333
3434
- name: Install GH CLI
35-
uses: dev-hanz-ops/[email protected].0
35+
uses: dev-hanz-ops/[email protected].1
3636
with:
3737
gh-cli-version: 2.32.0
3838

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ title: SageMath
44
abstract: SageMath is a free open-source mathematics software system.
55
authors:
66
- name: "The SageMath Developers"
7-
version: 10.6.beta4
7+
version: 10.6.beta5
88
doi: 10.5281/zenodo.8042260
9-
date-released: 2025-01-18
9+
date-released: 2025-01-26
1010
repository-code: "https://github.com/sagemath/sage"
1111
url: "https://www.sagemath.org/"

VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SageMath version 10.6.beta4, Release Date: 2025-01-18
1+
SageMath version 10.6.beta5, Release Date: 2025-01-26

build/bin/sage-spkg

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -603,14 +603,14 @@ case "$PKG_SRC" in
603603
esac
604604
605605
# Poison the proxy variable to forbid downloads in spkg-install
606-
# for normal packages
607-
case $PKG_SRC_TYPE in
608-
normal|wheel)
609-
export http_proxy=http://192.0.2.0:5187/
610-
export https_proxy=$http_proxy
611-
export ftp_proxy=$http_proxy
612-
export rsync_proxy=$http_proxy
613-
;;
606+
# for normal/wheel standard packages
607+
case "$PKG_TYPE:$PKG_SRC_TYPE" in
608+
standard:normal|standard:wheel)
609+
export http_proxy=http://192.0.2.0:5187/
610+
export https_proxy=$http_proxy
611+
export ftp_proxy=$http_proxy
612+
export rsync_proxy=$http_proxy
613+
;;
614614
esac
615615
616616
# Make sage-logger show the full logs

build/pkgs/ccache/spkg-install.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ mkdir build
44
cd build
55
sdh_cmake -DCMAKE_BUILD_TYPE=Release \
66
-DENABLE_TESTING=OFF \
7-
-DREDIS_STORAGE_BACKEND=OFF \
87
..
98
sdh_make
109
sdh_make_install

build/pkgs/configure/checksums.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
tarball=configure-VERSION.tar.gz
2-
sha1=f9c1bea6113a6a09430ee1f1aca16c75ed427d48
3-
sha256=c1e0826fb54dd60e78f19e6fcad0b0ef90b33e1771fbbc2165a54c9297a89557
2+
sha1=86711d4cbef2cd4e7bb4afcde36965e5dea908e0
3+
sha256=9793cf92ebdceb09050a585294de93c242c033745a0012cae1bd301d307a45df
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5eb37241946a9ef9130ce36eff7e4f135d980eaf
1+
efc0914cd8d72a9bdfdcca4511b55e290b9b6674

build/pkgs/igraph/checksums.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
tarball=igraph-VERSION.tar.gz
2-
sha1=3789f61beac1f1231f8c3832102dcb2720f2a0c9
3-
sha256=b011f7f9f38a3e59924cc9ff652e6d33105fa03fcaf3792f47d752626a0a4625
2+
sha1=af74e361167bd790ed2fcc248acd21ec946ddb2a
3+
sha256=03ba01db0544c4e32e51ab66f2356a034394533f61b4e14d769b9bbf5ad5e52c
44
upstream_url=https://github.com/igraph/igraph/releases/download/VERSION/igraph-VERSION.tar.gz
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.12
1+
0.10.15

build/pkgs/igraph/spkg-configure.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SAGE_SPKG_CONFIGURE([igraph], [
33
dnl check for igraph with pkg-config
44
dnl Per upstream in https://github.com/sagemath/sage/pull/36750#issuecomment-1826998762:
55
dnl each python-igraph release is only guaranteed to be compatible with the same C/igraph that it bundles
6-
PKG_CHECK_MODULES([IGRAPH], [igraph >= 0.10.12 igraph < 0.10.13], [], [
6+
PKG_CHECK_MODULES([IGRAPH], [igraph >= 0.10.14 igraph < 0.10.16], [], [
77
sage_spkg_install_igraph=yes])
88
])
99
])

0 commit comments

Comments
 (0)