Re: [sage-devel] error while installing python_igraph on fedora 32 - missing texttable

2020-12-09 Thread Samuel Lelievre
The missing texttable binary has now been uploaded
to our download mirrors. Thanks for the report!

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-devel/e8427ff0-7ff2-45b5-9bfe-290cfbd9fb7bn%40googlegroups.com.


[sage-devel] Flint 2.7.0 release candidate 1

2020-12-09 Thread 'Bill Hart' via sage-devel
Hi all,

We are planning to do a Flint release this week or early next week and
so I have tagged flint-2.7.0-rc1.

The main big change in this release is multivariate factorisation by
Dan Schultz. However a full changelog and list of authors will be made
available in the next rc (if there is one) or in the final release.

All bugs should be reported on our GitHub issue tracker:

https://github.com/wbhart/flint2/issues

Note that the function nmod_mat_scalar_mul_add has been deprecated and
replaced with nmod_mat_scalar_addmul.

Bill.

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-devel/CAB0xFntKqNC%3DovSeWE2FsEMS8%2BCE14G%2BN29bfT__Raxi08d1Qw%40mail.gmail.com.


Re: [sage-devel] error while installing python_igraph on fedora 32 - missing texttable

2020-12-09 Thread David Coudert
Thank you !

+1 to make it default, in particular since it's the last place it tries to 
download from.

Le mercredi 9 décembre 2020 à 12:21:13 UTC+1, dim...@gmail.com a écrit :

> On Wed, Dec 9, 2020 at 11:16 AM David Coudert  wrote:
> >
> > I just installed sagemath on a new desktop running fedora 32 and I'm now 
> trying to install python_igraph.
> >
> > Command 'sage -I python_igraph' failed because it is unable to download 
> dependency texttable-1.6.3.tar.gz (log file attached)
> > It tries to download it from mirrors (where it is not present) and not 
> from the upstream url that is indicated in 
> build/pkgs/texttable/checksums.ini
> > ===
> > tarball=texttable-VERSION.tar.gz
> > sha1=0b345a86669730f204804916e439820d06321223
> > md5=68e6b31d36f5c20221da7d5db3eca772
> > cksum=3865027881 <(386)%20502-7881>
> > upstream_url=
> https://pypi.io/packages/source/t/texttable/texttable-VERSION.tar.gz
> > ===
> >
> > I can download it manually from upstream url. I don't know how to fix 
> that.
>
> ./configure --enable-download-from-upstream-url
>
> (I don't see why we should not make this option default, at least for
> development work.)
>
> >
> >
> >
> >
> >
> >
> > --
> > 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+...@googlegroups.com.
> > To view this discussion on the web visit 
> https://groups.google.com/d/msgid/sage-devel/0b5ab532-eb15-4fc1-bcd3-feb793f83f95n%40googlegroups.com
> .
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-devel/01ca3dcf-27e3-4648-be93-27a68c97faa9n%40googlegroups.com.


Re: [sage-devel] Re: missing docker images of sagemath

2020-12-09 Thread Dima Pasechnik
On Tue, Dec 8, 2020 at 5:17 PM Matthias Koeppe  wrote:
>
> On Tuesday, December 8, 2020 at 8:16:53 AM UTC-8 Dima Pasechnik wrote:
>>
>> On Tue, Dec 8, 2020 at 3:56 PM Eric Gourgoulhon  wrote:
>> > On the page
>> > https://hub.docker.com/r/sagemath/sagemath/tags?page=1=last_updated
>> > we see the Docker images develop and develop-py3, as well as 9.3.beta3 and 
>> > 9.3.beta3-py3. I guess this is a duplicate and that there should no longer 
>> > be any stuff marked '*-py3' now...
>>
>> it's from .ci/push-dockerhub.sh :
>>
>> # For historical reasons, we also provide a -py3 tag. It's identical
>> to the non-py3 tag.
>>
>> docker tag ${DOCKER_NAMESPACE:-sagemath}/$1:$DOCKER_TAG
>> ${DOCKER_NAMESPACE:-sagemath}/$1:$DOCKER_TAG-py3
>>
>> docker push ${DOCKER_NAMESPACE:-sagemath}/$1:$DOCKER_TAG-py3
>>
>> Can these lines just be removed?
>>
>> I don't see any "historical reason" here...
>
>
> User packages' CI scripts may be referring to this tag.

fine, but this does not need several "docker push", as we are tagging
the same image, right?

docker image push --all-tags

should do all this in one go, no?


>
>
>
>
>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/sage-devel/010a3525-a4b5-401e-8cc6-09b19586d232n%40googlegroups.com.

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-devel/CAAWYfq0mHuUURNt%3DPMgv2FWZGWEbPKNchXkAsvo-pnnd60LJFA%40mail.gmail.com.


Re: [sage-devel] Re: missing docker images of sagemath

2020-12-09 Thread Sébastien Labbé


On Tuesday, December 8, 2020 at 6:17:52 PM UTC+1 Matthias Koeppe wrote:

> User packages' CI scripts may be referring to this tag.
>
>
I would remove the `-py3` suffix or otherwise, we think that the 
`sage9.3.beta3` tag is not using Python 3. 

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-devel/b7284d1f-23a5-4499-89bf-9ea76692792an%40googlegroups.com.


Re: [sage-devel] error while installing python_igraph on fedora 32 - missing texttable

2020-12-09 Thread Dima Pasechnik
On Wed, Dec 9, 2020 at 11:16 AM David Coudert  wrote:
>
> I just installed sagemath on a new desktop running fedora 32 and I'm now 
> trying to install python_igraph.
>
> Command 'sage -I python_igraph' failed because it is unable to download 
> dependency texttable-1.6.3.tar.gz (log file attached)
> It tries to download it from mirrors (where it is not present) and not from 
> the upstream url that is indicated in build/pkgs/texttable/checksums.ini
> ===
> tarball=texttable-VERSION.tar.gz
> sha1=0b345a86669730f204804916e439820d06321223
> md5=68e6b31d36f5c20221da7d5db3eca772
> cksum=3865027881
> upstream_url=https://pypi.io/packages/source/t/texttable/texttable-VERSION.tar.gz
> ===
>
> I can download it manually from upstream url. I don't know how to fix that.

./configure --enable-download-from-upstream-url

(I don't see why we should not make this option default, at least for
development work.)

>
>
>
>
>
>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/sage-devel/0b5ab532-eb15-4fc1-bcd3-feb793f83f95n%40googlegroups.com.

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-devel/CAAWYfq0hw3LEGZo9xy%3DqXuwzuG2N0_%2Bj0bwX_VynKsQoG09cFw%40mail.gmail.com.


[sage-devel] error while installing python_igraph on fedora 32 - missing texttable

2020-12-09 Thread David Coudert
I just installed sagemath on a new desktop running fedora 32 and I'm now 
trying to install python_igraph.

Command 'sage -I python_igraph' failed because it is unable to download 
dependency texttable-1.6.3.tar.gz (log file attached)
It tries to download it from mirrors (where it is not present) and not from 
the upstream url that is indicated in build/pkgs/texttable/checksums.ini
===
tarball=texttable-VERSION.tar.gz
sha1=0b345a86669730f204804916e439820d06321223
md5=68e6b31d36f5c20221da7d5db3eca772
cksum=3865027881
upstream_url=https://pypi.io/packages/source/t/texttable/texttable-VERSION.tar.gz
===

I can download it manually from upstream url. I don't know how to fix that.






-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/sage-devel/0b5ab532-eb15-4fc1-bcd3-feb793f83f95n%40googlegroups.com.
Found local metadata for texttable-1.6.3
Attempting to download package texttable-1.6.3.tar.gz from mirrors
http://www-ftp.lip6.fr/pub/math/sagemath/spkg/upstream/texttable/texttable-1.6.3.tar.gz
[xx]
ERROR [transfer|run:135]: [Errno socket error] [Errno 404] Not Found: 
'//www-ftp.lip6.fr/pub/math/sagemath/spkg/upstream/texttable/texttable-1.6.3.tar.gz'
http://www.mirrorservice.org/sites/www.sagemath.org/spkg/upstream/texttable/texttable-1.6.3.tar.gz
[xx]
ERROR [transfer|run:135]: [Errno socket error] [Errno 404] Not Found: 
'//www.mirrorservice.org/sites/www.sagemath.org/spkg/upstream/texttable/texttable-1.6.3.tar.gz'
http://ftp.rediris.es/mirror/sagemath/spkg/upstream/texttable/texttable-1.6.3.tar.gz
[xx]
ERROR [transfer|run:135]: [Errno socket error] [Errno 404] Not Found: 
'//ftp.rediris.es/mirror/sagemath/spkg/upstream/texttable/texttable-1.6.3.tar.gz'
https://mirror.dogado.de/sage/spkg/upstream/texttable/texttable-1.6.3.tar.gz
[xx]
ERROR [transfer|run:135]: [Errno socket error] [Errno 404] Not Found: 
'//mirror.dogado.de/sage/spkg/upstream/texttable/texttable-1.6.3.tar.gz'
http://mirror.yandex.ru/mirrors/sage.math.washington.edu/spkg/upstream/texttable/texttable-1.6.3.tar.gz
[xx]
ERROR [transfer|run:135]: [Errno socket error] [Errno 404] Not Found: 
'//mirror.yandex.ru/mirrors/sage.math.washington.edu/spkg/upstream/texttable/texttable-1.6.3.tar.gz'
https://mirrors.up.pt/pub/sage/spkg/upstream/texttable/texttable-1.6.3.tar.gz
[xx]
ERROR [transfer|run:135]: [Errno socket error] [Errno 404] Not Found: 
'//mirrors.up.pt/pub/sage/spkg/upstream/texttable/texttable-1.6.3.tar.gz'
http://mirrors.mit.edu/sage/spkg/upstream/texttable/texttable-1.6.3.tar.gz
[xx]
ERROR [transfer|run:135]: [Errno socket error] [Errno 404] Not Found: 
'//mirrors.mit.edu/sage/spkg/upstream/texttable/texttable-1.6.3.tar.gz'
https://mirror.lyrahosting.com/sagemath/spkg/upstream/texttable/texttable-1.6.3.tar.gz
[xx]
ERROR [transfer|run:135]: [Errno socket error] [Errno 404] Not Found: 
'//mirror.lyrahosting.com/sagemath/spkg/upstream/texttable/texttable-1.6.3.tar.gz'
http://sage.mirror.garr.it/mirrors/sage/spkg/upstream/texttable/texttable-1.6.3.tar.gz
[xx]
ERROR [transfer|run:135]: [Errno socket error] [Errno 404] Not Found: 
'//sage.mirror.garr.it/mirrors/sage/spkg/upstream/texttable/texttable-1.6.3.tar.gz'
http://files.sagemath.org/spkg/upstream/texttable/texttable-1.6.3.tar.gz
[xx]
ERROR [transfer|run:135]: [Errno socket error] [Errno 404] Not Found: 
'//files.sagemath.org/spkg/upstream/texttable/texttable-1.6.3.tar.gz'
https://mirror.koddos.net/sagemath/spkg/upstream/texttable/texttable-1.6.3.tar.gz
[xx]
ERROR [transfer|run:135]: [Errno socket error] [Errno 404] Not Found: 
'//mirror.koddos.net/sagemath/spkg/upstream/texttable/texttable-1.6.3.tar.gz'
https://mirror.marwan.ma/sage/spkg/upstream/texttable/texttable-1.6.3.tar.gz
[xx]
ERROR [transfer|run:135]: [Errno socket error] [Errno 404] Not Found: 
'//mirror.marwan.ma/sage/spkg/upstream/texttable/texttable-1.6.3.tar.gz'
http://sagemath.mirror.ac.za/spkg/upstream/texttable/texttable-1.6.3.tar.gz