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 'develop' into t/17402/public/17402
* develop: (1077 commits) Updated Sage version to 6.6.rc0 fixed spacing in k_weight Jessica Striker's code, with minor changes revert accidental removal of a doc line review patch review patch fixed bump algorithm check for semistandardness and keep the type if so cleaned up implementation of bump algorithm optimizing further and removing a tabstop More order of iteration doctest fixes. improved documentation of schensted_insert fixed tab character fixed schensted_insert to make it more efficient fixed schensted_insert to make it more efficient simplified definition of is_rectangular fixed ribbon definition on both skew_partition and skew_tableau Trivial doctest fixes and removed old note in Groups(). adding correct spaces to docs Do not build the Jinja2 docs ... Conflicts: src/sage/symbolic/expression.pyx
- Loading branch information
Showing
1,186 changed files
with
78,649 additions
and
28,010 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
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 @@ | ||
Sage version 6.5.beta6, released 2015-01-24 | ||
Sage version 6.6.rc0, released 2015-03-21 |
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=arb-VERSION.tar.gz | ||
sha1=e96a54950b88e762fc80ab5eb88b2273aaf79be1 | ||
md5=4a98e6aaa1108adfc5a46f1f64be0ec1 | ||
cksum=1828799562 | ||
sha1=ba51573e0c50250bbb16bfca027dc26531347f12 | ||
md5=5b2c10b103cf64f33dc7d15c1fb2948f | ||
cksum=1391275088 |
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,2 +1,2 @@ | ||
2.3.0 | ||
2.5.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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
Patch tests of arb-2.5 to be compatible with flint-2.4.4 | ||
|
||
Arb's testsuite, src/acb_modular/test/t-epsilon_arg.c, calls | ||
fmpq_dedekind_sum. However, this function does not exist in | ||
flint-2.4.4. | ||
|
||
fmpq_dedekind_sum was introduced in | ||
https://github.com/wbhart/flint2/commit/64f656fb8db591ea11db606c7905de9f47b05e84 | ||
and arith_dedekind_sum is now an alias to fmpq_dedekind_sum. | ||
|
||
So I patch src/acb_modular/test/t-epsilon_arg.c to call | ||
arith_dedekind_sum instead of fmpq_dedekind_sum. | ||
|
||
See also http://trac.sagemath.org/ticket/17688#comment:8 . | ||
|
||
diff -r -u src/acb_modular/test/t-epsilon_arg.c new/acb_modular/test/t-epsilon_arg.c | ||
--- src/acb_modular/test/t-epsilon_arg.c 2015-01-28 19:20:07.000000000 +0200 | ||
+++ new/acb_modular/test/t-epsilon_arg.c 2015-02-11 14:07:30.947675579 +0200 | ||
@@ -49,7 +49,7 @@ | ||
fmpz_mul_ui(fmpq_denref(arg), c, 12); | ||
fmpq_canonicalise(arg); | ||
|
||
- fmpq_dedekind_sum(t, d, c); | ||
+ arith_dedekind_sum(t, d, c); | ||
fmpq_sub(arg, arg, t); | ||
|
||
fmpq_clear(t); | ||
Only in new/acb_modular/test: t-epsilon_arg.c~ |
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,24 @@ | ||
= backports.ssl_match_hostname = | ||
|
||
== Description == | ||
|
||
This backport brings match_hostname() to users of | ||
Python 2.x | ||
|
||
== License == | ||
|
||
Python Software Foundation License | ||
|
||
== Upstream Contact == | ||
|
||
Home page: https://pypi.python.org/pypi/backports.ssl_match_hostname | ||
|
||
== Dependencies == | ||
|
||
Python, Setuptools | ||
|
||
== Special Update/Build Instructions == | ||
|
||
* Unpack the tarball | ||
* rename backports.ssl_match_hostname -> backports_ssl_match_hostname | ||
* Tar as backports_ssl_match_hostname.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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
tarball=backports_ssl_match_hostname-VERSION.tar.gz | ||
sha1=194503d8b47066c2ce8d23cab707d19d6ada2eb9 | ||
md5=5def436c23fa2bc09aedf221d61b7017 | ||
cksum=132706006 |
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 @@ | ||
3.4.0.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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [ -z "$SAGE_LOCAL" ]; then | ||
echo >&2 "SAGE_LOCAL undefined ... exiting" | ||
echo >&2 "Maybe run 'sage --sh'?" | ||
exit 1 | ||
fi | ||
|
||
cd src | ||
|
||
python setup.py install | ||
if [ $? -ne 0 ]; then | ||
echo "Error installing backports.ssl_match_hostname ... exiting" | ||
exit 1 | ||
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
= Certifi = | ||
|
||
== Description == | ||
|
||
Python package for providing Mozilla's CA Bundle. | ||
|
||
== License == | ||
|
||
ISC | ||
|
||
== Upstream Contact == | ||
|
||
Home page: https://pypi.python.org/pypi/certifi | ||
|
||
== Dependencies == | ||
|
||
Python, Setuptools | ||
|
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,4 @@ | ||
tarball=certifi-VERSION.tar.gz | ||
sha1=f53dc8f57aaf6d69c183ebadcec52ece0a55cc3f | ||
md5=315ea4e50673a16ab047099f816fd32a | ||
cksum=3559413705 |
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 @@ | ||
14.05.14 |
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,15 @@ | ||
#!/usr/bin/env bash | ||
|
||
if [ -z "$SAGE_LOCAL" ]; then | ||
echo >&2 "SAGE_LOCAL undefined ... exiting" | ||
echo >&2 "Maybe run 'sage --sh'?" | ||
exit 1 | ||
fi | ||
|
||
cd src | ||
|
||
python setup.py install | ||
if [ $? -ne 0 ]; then | ||
echo "Error installing certifi ... exiting" | ||
exit 1 | ||
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,4 +1,4 @@ | ||
tarball=configure-VERSION.tar.gz | ||
sha1=99eab7d6d7eabfb85e3efe2ce4b2096c836681ce | ||
md5=9823a583c3663035cdb47fdb6f334173 | ||
cksum=2606347674 | ||
sha1=b81af0cc7d0037e6746f5579306f848147bee25b | ||
md5=a8c08c53d588c9be292d2916c585b0dc | ||
cksum=2904646762 |
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 @@ | ||
64 | ||
77 |
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=cython-VERSION.tar.gz | ||
sha1=02c6f25025923e5a5647e7876670a4cc7759371e | ||
md5=c59163d7c72c0a0ee5eb84edd17935ed | ||
cksum=3555036300 | ||
tarball=cython-VERSION.tar.bz2 | ||
sha1=89cf4f3d9a840e593da066a9f723b31a27d7c6a6 | ||
md5=6fe7c9d93970ce602d60defd903188d8 | ||
cksum=1851959595 |
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.21.1 | ||
0.22 |
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=database_gap-VERSION.tar.bz2 | ||
sha1=0e81cd017dc0542fc5faf923324eb1fffb61cdeb | ||
md5=879fc85f53fa9ff9f12dc7ebd621a528 | ||
cksum=3437971482 | ||
sha1=14f99d80583928d373b053cb346d21effd17d53e | ||
md5=1fe8a7e5e0eddf8c7de46b1485fb491f | ||
cksum=2596097681 |
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.7.5 | ||
4.7.7 |
Oops, something went wrong.