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 tag '9.6.rc4' into t/32423/update_numpy_to_1_22_x__scipy_1_8_x_…
…__requires_dropping_python_3_7 SageMath version 9.6.rc4, Release Date: 2022-05-12
- Loading branch information
Showing
30 changed files
with
367 additions
and
261 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 @@ | ||
SageMath version 9.6.rc3, Release Date: 2022-04-29 | ||
SageMath version 9.6.rc4, Release Date: 2022-05-12 |
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=625fcd35850a91e736c0e618ace82b8e09c8e605 | ||
md5=db697a2f6460f5328f64cfaafdb58703 | ||
cksum=2241741028 | ||
sha1=ebad99b2c419469d2b491a012dc3a4d53a0fc4c0 | ||
md5=f0696455b8ba7dc50b7d23031f52ed19 | ||
cksum=143579459 |
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 @@ | ||
8e8d7b448d7dfe9b1c223a245e6d164507ddfe15 | ||
feb23e71747e42520fe984fa377c7ce5b5af025e |
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 @@ | ||
9.6.rc3 | ||
9.6.rc4 |
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 @@ | ||
9.6.rc3 | ||
9.6.rc4 |
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 @@ | ||
# Sage version information for shell scripts | ||
# This file is auto-generated by the sage-update-version script, do not edit! | ||
SAGE_VERSION='9.6.rc3' | ||
SAGE_RELEASE_DATE='2022-04-29' | ||
SAGE_VERSION_BANNER='SageMath version 9.6.rc3, Release Date: 2022-04-29' | ||
SAGE_VERSION='9.6.rc4' | ||
SAGE_RELEASE_DATE='2022-05-12' | ||
SAGE_VERSION_BANNER='SageMath version 9.6.rc4, Release Date: 2022-05-12' |
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 |
---|---|---|
|
@@ -5,6 +5,5 @@ Constants | |
:maxdepth: 2 | ||
|
||
sage/symbolic/constants | ||
sage/symbolic/constants_c | ||
|
||
.. include:: ../footer.txt |
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 @@ | ||
r""" | ||
Check for phitigra | ||
""" | ||
from . import PythonModule | ||
|
||
|
||
class Phitigra(PythonModule): | ||
r""" | ||
A :class:`sage.features.Feature` describing the presence of phitigra. | ||
Phitigra is provided by an optional package in the Sage distribution. | ||
EXAMPLES:: | ||
sage: from sage.features.phitigra import Phitigra | ||
sage: Phitigra().is_present() # optional - phitigra | ||
FeatureTestResult('phitigra', True) | ||
""" | ||
def __init__(self): | ||
r""" | ||
TESTS:: | ||
sage: from sage.features.phitigra import Phitigra | ||
sage: isinstance(Phitigra(), Phitigra) | ||
True | ||
""" | ||
PythonModule.__init__(self, 'phitigra', spkg='phitigra') | ||
|
||
|
||
def all_features(): | ||
return [Phitigra()] |
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,3 +1,10 @@ | ||
from sage.misc.lazy_import import lazy_import | ||
r""" | ||
Time Series (deprecated module) | ||
This module consists only of deprecated lazy imports from | ||
:mod:`sage.stats.time_series`. | ||
""" | ||
|
||
|
||
from sage.misc.lazy_import import lazy_import | ||
lazy_import('sage.stats.time_series', ('TimeSeries', 'autoregressive_fit'), deprecation=32427) |
Oops, something went wrong.