Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit ed1a089

Browse files
author
Matthias Koeppe
committed
Merge #31584
2 parents 3779a25 + 52537d1 commit ed1a089

11 files changed

+23
-27
lines changed

.zenodo.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"description": "Mirror of the Sage https://sagemath.org/ source tree",
33
"license": "other-open",
4-
"title": "sagemath/sage: 9.3.rc0",
5-
"version": "9.3.rc0",
4+
"title": "sagemath/sage: 9.3.rc1",
5+
"version": "9.3.rc1",
66
"upload_type": "software",
7-
"publication_date": "2021-03-23",
7+
"publication_date": "2021-03-29",
88
"creators": [
99
{
1010
"affiliation": "SageMath.org",
@@ -15,7 +15,7 @@
1515
"related_identifiers": [
1616
{
1717
"scheme": "url",
18-
"identifier": "https://github.com/sagemath/sage/tree/9.3.rc0",
18+
"identifier": "https://github.com/sagemath/sage/tree/9.3.rc1",
1919
"relation": "isSupplementTo"
2020
},
2121
{

VERSION.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
SageMath version 9.3.rc0, Release Date: 2021-03-23
1+
SageMath version 9.3.rc1, Release Date: 2021-03-29

build/pkgs/configure/checksums.ini

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
tarball=configure-VERSION.tar.gz
2-
sha1=bb7050ca732ec30cabe28f018b0dfab43ea1ce0b
3-
md5=a22a34d6f329fd4fafa7794eba219619
4-
cksum=3797497074
2+
sha1=df2f6839c4a19b7d21c4f387df24596fcfa2b459
3+
md5=f307be6d68e25b3924cc93d2bcc9dc04
4+
cksum=1158861891
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5e86bf2b7a5873e9f42b32c43718a24d834b5abd
1+
6e084f9dbad96c3a166732efb36fe71acd2e7ba2

build/pkgs/cvxopt/spkg-install.in

+3-3
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ export CVXOPT_BLAS_LIB="$(cvxopt_output l blas)"
6565
export CVXOPT_BLAS_LIB_DIR="$(pkg-config --variable=libdir blas)"
6666
export CVXOPT_LAPACK_LIB="$(cvxopt_output l lapack)"
6767

68-
if test "x$SAGE_SUITESPARSE_LOCALINSTALL" != "x"; then
69-
export CVXOPT_SUITESPARSE_LIB_DIR="${SAGE_LOCAL}"
70-
export CVXOPT_SUITESPARSE_INC_DIR="${SAGE_LOCAL}/include"
68+
if test "x$SAGE_SUITESPARSE_PREFIX" != "x"; then
69+
export CVXOPT_SUITESPARSE_LIB_DIR="${SAGE_SUITESPARSE_PREFIX}"
70+
export CVXOPT_SUITESPARSE_INC_DIR="${SAGE_SUITESPARSE_PREFIX}/include"
7171
fi
7272

7373
export CVXOPT_BUILD_GLPK=1

build/pkgs/numpy/spkg-install.in

+1-5
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,7 @@ python3 ../lapack_conf.py
2222
export FFLAGS="$FFLAGS -fPIC"
2323
export FCFLAGS="$FCFLAGS -fPIC"
2424

25-
if [ "$SAGE_FAT_BINARY" = "yes" ]; then
26-
export NUMPY_FCONFIG="config_fc --noopt --noarch --cpu-dispatch=\"min\""
27-
else
28-
export NUMPY_FCONFIG="config_fc --noopt --noarch"
29-
fi
25+
export NUMPY_FCONFIG="config_fc --noopt --noarch"
3026

3127
################################################
3228

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.3.rc0
1+
9.3.rc1

build/pkgs/suitesparse/spkg-configure.m4

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ SAGE_SPKG_CONFIGURE([suitesparse], [
1717
sage_spkg_install_suitesparse=yes])
1818
], [], [], [
1919
AS_IF([test x$sage_spkg_install_suitesparse = xyes], [
20-
AC_SUBST(SAGE_SUITESPARSE_LOCALINSTALL, ['$SAGE_LOCAL'])
20+
AC_SUBST(SAGE_SUITESPARSE_PREFIX, ['$SAGE_LOCAL'])
2121
], [
22-
AC_SUBST(SAGE_SUITESPARSE_LOCALINSTALL, [''])
22+
AC_SUBST(SAGE_SUITESPARSE_PREFIX, [''])
2323
])
2424
])

src/VERSION.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.3.rc0
1+
9.3.rc1

src/bin/sage-version.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Sage version information for shell scripts
22
# This file is auto-generated by the sage-update-version script, do not edit!
3-
SAGE_VERSION='9.3.rc0'
4-
SAGE_RELEASE_DATE='2021-03-23'
5-
SAGE_VERSION_BANNER='SageMath version 9.3.rc0, Release Date: 2021-03-23'
3+
SAGE_VERSION='9.3.rc1'
4+
SAGE_RELEASE_DATE='2021-03-29'
5+
SAGE_VERSION_BANNER='SageMath version 9.3.rc1, Release Date: 2021-03-29'

src/sage/version.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Sage version information for Python scripts
22
# This file is auto-generated by the sage-update-version script, do not edit!
3-
version = '9.3.rc0'
4-
date = '2021-03-23'
5-
banner = 'SageMath version 9.3.rc0, Release Date: 2021-03-23'
3+
version = '9.3.rc1'
4+
date = '2021-03-29'
5+
banner = 'SageMath version 9.3.rc1, Release Date: 2021-03-29'

0 commit comments

Comments
 (0)