Re: [sage-devel] Trouble with pkgconf

2018-07-01 Thread R. Lauren Miller
Make distclean and pulling beta 8 worked! On Sun, Jul 1, 2018 at 6:55 PM, Jeroen Demeyer wrote: > I created two blocker tickets for these issues: > > - https://trac.sagemath.org/ticket/25731 > - https://trac.sagemath.org/ticket/25732 > > > -- > You received this message because you are subscri

Re: [sage-devel] Trouble with pkgconf

2018-07-01 Thread Jeroen Demeyer
I created two blocker tickets for these issues: - https://trac.sagemath.org/ticket/25731 - https://trac.sagemath.org/ticket/25732 -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, se

Re: [sage-devel] Trouble with pkgconf

2018-07-01 Thread R. Lauren Miller
I tried to run ./sage -f pkgconf and I got this error *** sage-spkg-uninstall pkgconf '/Users/RebeccaMiller/sage-develop/local' Uninstalling existing 'pkgconf' Warning: File '/share/man/man1/pkgconf.1' not found Error during uninstallation of 'pkgcon

[sage-devel] Re: Names of objects in sage

2018-07-01 Thread Nils Bruin
On Saturday, June 30, 2018 at 2:11:21 PM UTC-7, Andrew wrote: > > For some reason in sage when printing we often use long and laborious > names like: > > sage: LaurentPolynomialRing(ZZ,'q') > Univariate Laurent Polynomial Ring in q over Integer Ring > sage: LaurentPolynomialRing(GF(5),'q') > Univa

Re: [sage-devel] Trouble with pkgconf

2018-07-01 Thread Jeroen Demeyer
On 2018-07-01 17:40, R. Lauren Miller wrote: It wouldn't let me. Can I swing by in a bit? Feel free to swing... -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [sage-devel] Trouble with pkgconf

2018-07-01 Thread R. Lauren Miller
It wouldn't let me. Can I swing by in a bit? On Sun, Jul 1, 2018 at 3:26 PM, Jeroen Demeyer wrote: > On 2018-07-01 14:46, R. Lauren Miller wrote: > >> log file: /Users/RebeccaMiller/sage-develop/logs/pkgs/fflas_ffpack-2. >> 3.2.log >> > > This is the actual log file that we'd need to see ^ > > >

Re: [sage-devel] Trouble with pkgconf

2018-07-01 Thread R. Lauren Miller
and this to another of my sages Error building Sage. The following package(s) may have failed to build (not necessarily during this run of 'make base-toolchain'): * package: pkgconf-0.9.7.p0 log file: /Users/RebeccaMiller/sage-test/logs/pkgs/pkgconf-0.9.7.p0.log build directory: /Users/

Re: [sage-devel] Names of objects in sage

2018-07-01 Thread Thierry
Hi, On Sun, Jul 01, 2018 at 12:25:12AM -0700, Andrew wrote: [...] > > but then how do you want to render simple things like QQbar(1) without > > being heavy ? > > > > QQbar is less heavy than the the current "Algebraic Field". You missed my point, "QQbar(1)" is heavier than "1", and i am not

Re: [sage-devel] Trouble with pkgconf

2018-07-01 Thread Jeroen Demeyer
On 2018-07-01 14:46, R. Lauren Miller wrote: log file: /Users/RebeccaMiller/sage-develop/logs/pkgs/fflas_ffpack-2.3.2.log This is the actual log file that we'd need to see ^ -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from th

Re: [sage-devel] Trouble with pkgconf

2018-07-01 Thread R. Lauren Miller
This is what happened: Error building Sage. The following package(s) may have failed to build (not necessarily during this run of 'make all-build'): * package: fflas_ffpack-2.3.2 log file: /Users/RebeccaMiller/sage-develop/logs/pkgs/fflas_ffpack-2.3.2.log build directory: /Users/Rebecca

[sage-devel] Re: Names of objects in sage

2018-07-01 Thread Eric Gourgoulhon
Note that in the Jupyter notebook, having set %display latex you can have both outputs: LaurentPolynomialRing(ZZ,'q') returns *Z*[q^{\pm 1}] while print(LaurentPolynomialRing(ZZ,'q')) returns Univariate Laurent Polynomial Ring in q over Integer Ring By the way, I would advocate that %display late

Re: [sage-devel] Names of objects in sage

2018-07-01 Thread Andrew
maybe what you need is to write a _sage_input_ method for those objects, > For multivariate polynomials see https://trac.sagemath.org/ticket/25723. I haven't posted for review yet as there seem to be some seemingly unrelated failing doc-tests. Will look into these when I have some time tonig