Re: [sage-devel] Poll: set online=True as the default for threejs viewer

2019-02-14 Thread Enrique Artal
It does affect also when using jupyterhub, (by the way, also to jsmol). El martes, 12 de febrero de 2019, 9:20:48 (UTC+1), Jeroen Demeyer escribió: > > > Why neither nbviewer nor binder are able to find > > (or serve or ?) these javascript files? > > The problem is these lines in

Re: [sage-devel] MemoryError when individually doctesting sage/combinat/tableau.py

2019-02-14 Thread 'Martin R' via sage-devel
Thanks for the explanation! might it work to replace the call to `tuple` with a call to `lazy_list`? Martin Am Donnerstag, 14. Februar 2019 17:54:49 UTC+1 schrieb Travis Scrimshaw: > > Maybe...Because the façade parent framework needs the tuple to say it is a > façade for that set of parents.

Re: [sage-devel] MemoryError when individually doctesting sage/combinat/tableau.py

2019-02-14 Thread Travis Scrimshaw
Maybe...Because the façade parent framework needs the tuple to say it is a façade for that set of parents. Currently Family is a parent, so there would be no way to distinguish between the family should represent the set of parents or a parent to be the façade for. Most of what that test is

[sage-devel] Re: Valgrind - how to?

2019-02-14 Thread Samuel Lelievre
The ticket for upgrading valgrind is at https://trac.sagemath.org/ticket/19618 -- 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

[sage-devel] Re: Poll: set online=True as the default for threejs viewer

2019-02-14 Thread Eric Gourgoulhon
Just another data point: the option "online=True" is currently necessary to display threejs in Jupyter notebooks on CoCalc (without it, one gets just a blank). That said, I agree with the concerns expressed here about the silent access to internet and the user's privacy. Eric. -- You

[sage-devel] Re: Help : best way to compile a package sphinx's documentation during spkg-install

2019-02-14 Thread Vincent Klein
Here is a better version (With Erik Bray's help): cd src && sdh_pip_install . SITE_PKGS="$(sage-python23 -c "import site; print(site.getsitepackages()[0])")" PYTHONPATH=$PYTHONPATH:$SAGE_DESTDIR$SITEPKGS cd docs $MAKE html Le jeudi 14 février 2019 15:09:56 UTC+1, Vincent Klein a écrit : > > I

[sage-devel] Re: Help : best way to compile a package sphinx's documentation during spkg-install

2019-02-14 Thread Vincent Klein
Here is a better version: cd src && sdh_pip_install . SITE_PKGS="$(sage-python23 -c "import site; print(site.getsitepackages()[0])")" PYTHONPATH=$PYTHONPATH:$SAGE_DESTDIR$SITEPKGS cd docs $MAKE html Le jeudi 14 février 2019 15:09:56 UTC+1, Vincent Klein a écrit : > > I have find a workaround

[sage-devel] Re: Help : best way to compile a package sphinx's documentation during spkg-install

2019-02-14 Thread Vincent Klein
I have find a workaround (without an inplace build) using the site module you can target the temporary directory in a generic way cd src && sdh_pip_install . SITE_PKGS="$(python -c "import site; \ print(site.getusersitepackages().replace(site.getuserbase(), ''))")"

Re: [sage-devel] MemoryError when individually doctesting sage/combinat/tableau.py

2019-02-14 Thread 'Martin R' via sage-devel
Further digging reveals that the problem is in `DisjointUnionEnumeratedSets.__init__, which expands the lazy `Family(Partitions_n(n), StandardTableaux_shape)` into a tuple. I have (currently) no idea whether this is necessary. Martin Am Donnerstag, 14. Februar 2019 12:38:20 UTC+1 schrieb

Re: [sage-devel] MemoryError when individually doctesting sage/combinat/tableau.py

2019-02-14 Thread 'Martin R' via sage-devel
Can we exclude the possibility that this is a regression? As far as I can see, the expensive part is in creating the parent 'StandardTableaux(50)', which is a bit strange, isn't it? Martin Am Mittwoch, 13. Februar 2019 22:02:37 UTC+1 schrieb Volker Braun: > > On Wednesday, February 13, 2019 at