Dear Sage lovers,
We're releasing Sage 5.0.rc1.
Source archive:
http://boxen.math.washington.edu/home/release/sage-5.0.rc1/sage-5.0.rc1.tar
Upgrade path:
http://boxen.math.washington.edu/home/release/sage-5.0.rc1/sage-5.0.rc1/
The source and upgrade path can also be found on the mirror network
(you might need to wait a while before the mirrors are synchronized):
http://www.sagemath.org/download-latest.html
Please build, test, and report! We'd love to hear about your
experiences with this release.
== Tickets ==
* We closed 506 tickets in this release. For details, see
http://boxen.math.washington.edu/home/release/sage-5.0.rc1/tickets.html
Closed tickets:
#10810: singular-3-1-1-4.p3 doesn't build on ARM [Reviewed by Julien Puydt]
#11881: Metaticket: build Sage on OS X 10.7 Lion [Reviewed by John Palmieri]
#12459: Interrupt test failures on OS X 10.7 [Reviewed by Jeroen Demeyer]
Merged in sage-5.0.rc1:
#12898: Jeroen Demeyer: Update top-level README.txt [Reviewed by William
Stein, Karl-Dieter Crisman, David Kirkby, Martin Raum]
#12899: Jeroen Demeyer: Update the "Install from Source Code" docs for
sage-5.0 [Reviewed by Nathann Cohen]
#12909: Robert Bradshaw, Jeroen Demeyer: gdmodule: don't use /sw and
/usr/local paths [Reviewed by Volker Braun]
--
You received this message because you are subscribed to the Google Groups "sage-release" group.
To post to this group, send email to sage-r...@googlegroups.com.
To unsubscribe from this group, send email to sage-release...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/sage-release?hl=en.
Dear Sage lovers,
We're releasing Sage 5.0.rc1.
Source archive:
http://boxen.math.washington.edu/home/release/sage-5.0.rc1/sage-5.0.rc1.tar
Upgrade path:
http://boxen.math.washington.edu/home/release/sage-5.0.rc1/sage-5.0.rc1/
The source and upgrade path can also be found on the mirror network
(you might need to wait a while before the mirrors are synchronized):
http://www.sagemath.org/download-latest.html
Please build, test, and report! We'd love to hear about your
experiences with this release.
== Tickets ==
* We closed 506 tickets in this release. For details, see
http://boxen.math.washington.edu/home/release/sage-5.0.rc1/tickets.html
Closed tickets:
#10810: singular-3-1-1-4.p3 doesn't build on ARM [Reviewed by Julien Puydt]
#11881: Metaticket: build Sage on OS X 10.7 Lion [Reviewed by John Palmieri]
#12459: Interrupt test failures on OS X 10.7 [Reviewed by Jeroen Demeyer]
Merged in sage-5.0.rc1:
#12898: Jeroen Demeyer: Update top-level README.txt [Reviewed by William
Stein, Karl-Dieter Crisman, David Kirkby, Martin Raum]
#12899: Jeroen Demeyer: Update the "Install from Source Code" docs for
sage-5.0 [Reviewed by Nathann Cohen]
#12909: Robert Bradshaw, Jeroen Demeyer: gdmodule: don't use /sw and
/usr/local paths [Reviewed by Volker Braun]
I think many of these errors are due to
from common.conf import *
ImportError: No module named conf
No, in fact you shouldn't set $SAGE_ROOT. I don't know about $SAGE, though.
to me this looks like you have something fishy installed in /usr/local/, and it gets picked up by mistake, either during the Sage installation, or during the testing...
I think many of these errors are due to
from common.conf import *
ImportError: No module named conf
On Sunday, 13 May 2012 09:24:07 UTC+2, ThanhVu Nguyen wrote:I think many of these errors are due to
from common.conf import *
ImportError: No module named confwhat are the contents of SAGE_ROOT/devel/sage/doc/common ?(which should be the same as SAGE_DOC/common )
What is the value of SAGE_DOC when you start Sage?
The following should give no error:sage: import sys, ossage: sys.path.append(os.environ['SAGE_DOC'])sage: from common.conf import *