This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'u/dkrenn/sequences/k-regular' into u/dkrenn/sequences/r…
…ec-basic-arith * u/dkrenn/sequences/k-regular: (6376 commits) Updated SageMath version to 8.1 Updated SageMath version to 8.1.rc4 Updated tarball, add spkg-src and fix instructions fix for #24085 packaged as an update with non-official tarball Updated SageMath version to 8.1.rc3 22851: make qepcad experimental sympy is needed by docbuild Updated SageMath version to 8.1.rc2 Updated SageMath version to 8.1.rc1 Added a comment with link to the relevant ticket Fixes https://trac.sagemath.org/ticket/24192 Use correct format for nbserver_extensions Skip test on systems without RLIMIT_AS support Add patch fixing build errors in fpylll on Cygwin The path to lib/python/config does not contain the Python LD_VERSION on Python 2 #24182 : update openssl package. increase tol Updated SageMath version to 8.1.rc0 Add wikipedia link. Some reviewer comments. ...
- Loading branch information
Showing
3,233 changed files
with
231,410 additions
and
106,146 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
SageMath version 7.5, Release Date: 2017-01-11 | ||
SageMath version 8.1, Release Date: 2017-12-07 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/usr/bin/env bash | ||
|
||
|
||
# Run the Python interpreter that we are currently building Sage with | ||
# | ||
# An existing Python is a build-time dependency for Sage, but | ||
# sometimes packages need to specifically run the one in Sage and not | ||
# just any Python interpreter. | ||
# | ||
# This is similar to the sage-pip-install script, which you should be | ||
# using for installing Python packages if at all possible. | ||
|
||
|
||
if [ "$SAGE_PYTHON3" = yes ]; then | ||
PYTHON="$SAGE_LOCAL/bin/python3" | ||
else | ||
PYTHON="$SAGE_LOCAL/bin/python2" | ||
fi | ||
|
||
# Check that Python is actually installed and issue an error message if not--in | ||
# particular if this was run from an spkg-install before Python is installed | ||
# this indicates that Python should be a dependency of that package. | ||
if [ ! -x "$PYTHON" ]; then | ||
echo >&2 "Error: Tried to use Sage's Python which was not yet installed." | ||
echo >&2 'If this was called from an spkg-install script for another ' | ||
echo >&2 'package you should add $(PYTHON) as a dependency in ' | ||
echo >&2 'build/pkgs/<pkg>/dependencies' | ||
exit 1 | ||
fi | ||
|
||
exec $PYTHON "$@" |
Oops, something went wrong.