forked from sagemath/sage
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
386 changed files
with
5,272 additions
and
2,142 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
SageMath version 9.5.beta1, Release Date: 2021-09-13 | ||
SageMath version 9.5.beta2, Release Date: 2021-09-26 |
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 |
---|---|---|
|
@@ -3,16 +3,15 @@ | |
# built wheel. | ||
|
||
# Default arguments for all packages installed with `pip install` | ||
# --ignore-installed : Force pip to re-install package even if it thinks it's | ||
# already installed (for which it sometimes gets false | ||
# positives for partially-installed packages). | ||
# --verbose : Display the output when running setup.py. | ||
# --no-deps : Don't install runtime dependencies from PyPI. | ||
# --no-index : Don't look at the package index. | ||
# This also disables pip's version self-check. | ||
# --disable-pip-version-check : Disables pip's version self-check. | ||
# --isolated : Don't read configuration files such as | ||
# ~/.pydistutils.cfg | ||
pip_install_flags="--ignore-installed --verbose --no-deps --no-index --isolated" | ||
# --no-cache-dir : Disable the cache. | ||
# (so that no previously built wheels can sneak in to | ||
# resolve runtime dependencies) | ||
pip_install_flags="--verbose --no-index --find-links=$SAGE_SPKG_WHEELS --disable-pip-version-check --isolated --no-cache-dir" | ||
|
||
# Note: "sage-pip-install" is meant to be run after $(PYTHON) has | ||
# been installed (either as an spkg or as a venv over a system python3). | ||
|
@@ -35,6 +34,17 @@ LOCK="$SAGE_LOCAL/var/lock/$PIP.lock" | |
# to apply a shared lock) | ||
sage-flock -s $LOCK $PYTHON -m pip install $pip_install_flags "$@" | ||
if [ $? -ne 0 ]; then | ||
echo >&2 "Error: installing with $PIP failed" | ||
exit 3 | ||
# --ignore-installed : Force pip to re-install package even if it thinks it's | ||
# already installed (for which it sometimes gets false | ||
# positives for partially-installed packages). | ||
# --no-deps : Don't install runtime dependencies from PyPI. | ||
extra_pip_install_flags="--no-deps --ignore-installed --ignore-requires-python" | ||
echo >&2 "Warning: installing with \"$PYTHON -m pip install $pip_install_flags\" failed. Retrying, adding \"$extra_pip_install_flags\"" | ||
sage-flock -s $LOCK $PYTHON -m pip install $pip_install_flags $extra_pip_install_flags "$@" | ||
if [ $? -ne 0 ]; then | ||
echo >&2 "Error: installing with pip failed" | ||
exit 3 | ||
else | ||
echo >&2 "Warning: The installation needed to use \"$extra_pip_install_flags\" to succeed. This means that a dependencies file in build/pkgs/ needs to be updated. Please report this to [email protected], including the build log of this package." | ||
fi | ||
fi |
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,4 +1,4 @@ | ||
tarball=configure-VERSION.tar.gz | ||
sha1=c68b33782a9f983d5cd132cdb85b9cdc424d5c04 | ||
md5=be4260558a6cf800a2e9eda789efc32b | ||
cksum=344926279 | ||
sha1=9b22a30a08e51ba00cd1d83434baaefd3185301e | ||
md5=0ac843dd51c77c37da876beae77af4bf | ||
cksum=1637280499 |
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 @@ | ||
a2af3f6a457f4c5618b72690a5c0be2b02360afb | ||
0a4f2a302c23d9c821b7be2cd6a7429075b7da60 |
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,5 +1,5 @@ | ||
tarball=database_knotinfo-VERSION.tar.gz | ||
sha1=2d758c5f8bf346162d13bec1d5bccfec9d27baa1 | ||
md5=ec20d43af0c4ecf59dfd281c6ccc4ef0 | ||
cksum=2792610748 | ||
sha1=549e3162b2ba6942dede30366072d10e26643f54 | ||
md5=c6487321cd2e0fd6b9f9ee7bdfa19993 | ||
cksum=2255768788 | ||
upstream_url=https://pypi.io/packages/source/d/database_knotinfo/database_knotinfo-VERSION.tar.gz |
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,4 +1,4 @@ | ||
$(PYTHON) | $(PYTHON_TOOLCHAIN) | ||
$(PYTHON) | $(PYTHON_TOOLCHAIN) $(and $(filter-out no,$(SAGE_CHECK_database_knotinfo)), $(SAGERUNTIME) ipywidgets sympy singular gap libhomfly libbraiding matplotlib) | ||
|
||
---------- | ||
All lines of this file are ignored except the first. |
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 @@ | ||
0.7 | ||
2021.9.1 |
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,10 +1,5 @@ | ||
cd $SAGE_ROOT/src/sage/ | ||
|
||
echo "Testing databases/knotinfo_db.py" | ||
sage -t --long --optional="sage,database_knotinfo" databases/knotinfo_db.py || sdh_die "Error testing KnotInfo databases" | ||
|
||
echo "Testing knots/knotinfo.py" | ||
sage -t --optional="sage,database_knotinfo" knots/knotinfo.py || sdh_die "Error testing KnotInfo funcionality" | ||
|
||
echo "Testing knots/link.py" | ||
sage -t --optional="sage,database_knotinfo" knots/link.py || sdh_die "Error testing KnotInfo funcionality" | ||
FILES="databases/ features/ knots/" | ||
echo "Testing: "$FILES | ||
sage -tp --long --optional="sage,database_knotinfo" $FILES || sdh_die "Error testing KnotInfo databases" |
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,9 +1,2 @@ | ||
cd src | ||
sdh_pip_install . | ||
|
||
FILECACHE="${SAGE_SHARE}/knotinfo" | ||
if [ -d $FILECACHE ] | ||
then | ||
echo "Clearing former filecache of knotinfo" | ||
rm -rf $FILECACHE | ||
fi |
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,5 +1,5 @@ | ||
tarball=distlib-VERSION.zip | ||
sha1=1c575431e31c32d25596c360e81bba7fe4638669 | ||
md5=4baf787d8aceb260d6f77cb31bf27cf6 | ||
cksum=2902365751 | ||
sha1=b36dcbb9542fa58ada97ab27269176ff7d170724 | ||
md5=50196f22cc2ed82fe2cf6c8fa3220d78 | ||
cksum=801947531 | ||
upstream_url=https://pypi.io/packages/source/d/distlib/distlib-VERSION.zip |
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 @@ | ||
0.3.1 | ||
0.3.2 |
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,4 +1,4 @@ | ||
$(PYTHON) | $(PYTHON_TOOLCHAIN) | ||
$(PYTHON) | pip | ||
|
||
---------- | ||
All lines of this file are ignored except the first. |
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,5 +1,5 @@ | ||
tarball=importlib_metadata-VERSION.tar.gz | ||
sha1=9a41be5cdf1fb347fca35640d607cbb27873cd02 | ||
md5=de8753734db41db35d763475b3cf56be | ||
cksum=2900617554 | ||
sha1=1572500dd099439cbd86bb70bfe1d206fbc844f6 | ||
md5=5b944bce3fccaf848f0cba7a07f850a1 | ||
cksum=416853070 | ||
upstream_url=https://pypi.io/packages/source/i/importlib_metadata/importlib_metadata-VERSION.tar.gz |
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 @@ | ||
4.0.1 | ||
4.8.1 |
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,5 +1,5 @@ | ||
tarball=importlib_resources-VERSION.tar.gz | ||
sha1=d4b853132e9b9a0c58610e23df380c84be428c08 | ||
md5=a4586b3cbb3d39c7a5e7ffc49d9ceb53 | ||
cksum=1484460315 | ||
sha1=d1f2742895a68f3f8d19dd7285df1687877fb15a | ||
md5=5db738106ca7c05340495c36357986a2 | ||
cksum=1338307365 | ||
upstream_url=https://pypi.io/packages/source/i/importlib_resources/importlib_resources-VERSION.tar.gz |
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,4 +1,4 @@ | ||
$(PYTHON) | $(PYTHON_TOOLCHAIN) | ||
$(PYTHON) zipp | $(PYTHON_TOOLCHAIN) | ||
|
||
---------- | ||
All lines of this file are ignored except the first. |
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 @@ | ||
5.1.4 | ||
5.2.2 |
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,4 +1,4 @@ | ||
$(PYTHON) | $(PYTHON_TOOLCHAIN) | ||
$(PYTHON) pygments | $(PYTHON_TOOLCHAIN) | ||
|
||
---------- | ||
All lines of this file are ignored except the first. |
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,4 +1,4 @@ | ||
$(PYTHON) | $(PYTHON_TOOLCHAIN) | ||
$(PYTHON) traitlets | $(PYTHON_TOOLCHAIN) | ||
|
||
---------- | ||
All lines of this file are ignored except the first. |
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,4 +1,4 @@ | ||
$(PYTHON) | $(PYTHON_TOOLCHAIN) | ||
$(PYTHON) jupyter_client | $(PYTHON_TOOLCHAIN) | ||
|
||
---------- | ||
All lines of this file are ignored except the first. |
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,5 +1,5 @@ | ||
tarball=numpy-VERSION.zip | ||
sha1=56731f9eedf3bd42de2940515cfe3fadea7dfcca | ||
md5=949d9114af9accc25ede1daa359c4227 | ||
cksum=2320980313 | ||
sha1=c7eb91a2232f7843301c355795860baaa0280909 | ||
md5=5638d5dae3ca387be562912312db842e | ||
cksum=2204147896 | ||
upstream_url=https://pypi.io/packages/source/n/numpy/numpy-VERSION.zip |
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 @@ | ||
1.20.3 | ||
1.21.2 |
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,5 +1,5 @@ | ||
tarball=openssl-VERSION.tar.gz | ||
sha1=261ea1ad4bbf7738622bea5caa97da0283fc3166 | ||
md5=53807796206619b62037a178846ebe7e | ||
cksum=980103943 | ||
sha1=3be896f1b33bc01af874ccca701a6f700af9de20 | ||
md5=43c5ab628b7ab899d7cd4a4c7fe4067f | ||
cksum=2515710600 | ||
upstream_url=https://www.openssl.org/source/openssl-VERSION.tar.gz |
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 @@ | ||
3.0.0-beta2 | ||
3.0.0 |
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,5 +1,5 @@ | ||
tarball=packaging-VERSION.tar.gz | ||
sha1=6f8880ab84f05714a2549c1b54314b4f79fee319 | ||
md5=5377308b3ba89f2d78c05e7f485be65d | ||
cksum=1567718319 | ||
sha1=6ba3b8ff3ee43d1d4c0b658241f4fd6036ee7c78 | ||
md5=240ba5823ed31051a1254e74c9d18d55 | ||
cksum=3836397838 | ||
upstream_url=https://pypi.io/packages/source/p/packaging/packaging-VERSION.tar.gz |
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 @@ | ||
20.9 | ||
21.0 |
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,5 +1,5 @@ | ||
tarball=pip-VERSION.tar.gz | ||
sha1=b26e4afd5524f5613edf5b1b94dd1b6e9a2e1f87 | ||
md5=a867fd51eacfd5293f5b7e0c2e7867a7 | ||
cksum=2004742197 | ||
sha1=c6c9348c79a7f8448cd14b9e53baf141ea185dee | ||
md5=efbdb4201a5e6383fb4d12e26f78f355 | ||
cksum=2583473334 | ||
upstream_url=https://pypi.io/packages/source/p/pip/pip-VERSION.tar.gz |
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 @@ | ||
21.1.2 | ||
21.2.4 |
Oops, something went wrong.