[sphinx-users] Sphinx-1.8.0 released

2018-09-19 Thread Luc Saffre
Oops, that workaround doesn't work. ATM I can avoid it only by saying
"export LC_TIME=en_GB.UTF-8" before running sphinx-build.

Luc


On 18.09.2018 09:40, Luc Saffre wrote:
> PS : more concretely as a workaround, I added the following lines to my
> conf.py file:
>
> import os
> os.environ['LC_TIME'] = 'en_UK.UTF-8'
>
> Works for me.
> Luc
>
> On 13.09.2018 13:55, Luc Saffre wrote:
>> Thanks again!
>>
>> This time I have a nice problem which caused me a few hours of fun:
>> http://luc.lino-framework.org/blog/2018/0913.html
>>
>> Summary: Sphinx version 1.8 sets the locale to the one defined by the
>> LC_TIME environment variable on my machine, despite the fact that in my
>> conf.py I have language = 'en'. Yes, feedformatter fails when the locale
>> is not English, they should fix this, but I don't see why Sphinx
>> behaviour changes with the value of LC_TIME environment variable on my
>> machine.  Yes, I live in Estonia, but that site with language = "en"
>> should have nothing Estonian.
>>
>> Luc
>>
>>
>> On 12.09.2018 19:22, Komiya Takeshi wrote:
>>> Hi all,
>>>
>>> I'm delighted to announce the release of Sphinx 1.8.0 final, now available 
>>> on
>>> the Python package index at .
>>>
>>> It includes about 45 new features, 26 bug fixes and 25 incompatible
>>> changes.
>>>
>>> For the full changelog, go to
>>> .
>>> Thanks to all collaborators and contributers!
>>>
>>> What is it?
>>> ===
>>>
>>> Sphinx is a tool that makes it easy to create intelligent and beautiful
>>> documentation for Python projects (or other documents consisting of
>>> multiple reStructuredText source files).
>>>
>>> Website: http://sphinx-doc.org/
>>> IRC: #sphinx-doc on irc.freenode.net
>>>
>>> Enjoy!
>>>

-- 
You received this message because you are subscribed to the Google Groups 
"sphinx-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sphinx-users+unsubscr...@googlegroups.com.
To post to this group, send email to sphinx-users@googlegroups.com.
Visit this group at https://groups.google.com/group/sphinx-users.
For more options, visit https://groups.google.com/d/optout.


[sphinx-users] Sphinx-1.8.0 released

2018-09-18 Thread Luc Saffre
PS : more concretely as a workaround, I added the following lines to my
conf.py file:

import os
os.environ['LC_TIME'] = 'en_UK.UTF-8'

Works for me.
Luc

On 13.09.2018 13:55, Luc Saffre wrote:
> Thanks again!
>
> This time I have a nice problem which caused me a few hours of fun:
> http://luc.lino-framework.org/blog/2018/0913.html
>
> Summary: Sphinx version 1.8 sets the locale to the one defined by the
> LC_TIME environment variable on my machine, despite the fact that in my
> conf.py I have language = 'en'. Yes, feedformatter fails when the locale
> is not English, they should fix this, but I don't see why Sphinx
> behaviour changes with the value of LC_TIME environment variable on my
> machine.  Yes, I live in Estonia, but that site with language = "en"
> should have nothing Estonian.
>
> Luc
>
>
> On 12.09.2018 19:22, Komiya Takeshi wrote:
>> Hi all,
>>
>> I'm delighted to announce the release of Sphinx 1.8.0 final, now available on
>> the Python package index at .
>>
>> It includes about 45 new features, 26 bug fixes and 25 incompatible
>> changes.
>>
>> For the full changelog, go to
>> .
>> Thanks to all collaborators and contributers!
>>
>> What is it?
>> ===
>>
>> Sphinx is a tool that makes it easy to create intelligent and beautiful
>> documentation for Python projects (or other documents consisting of
>> multiple reStructuredText source files).
>>
>> Website: http://sphinx-doc.org/
>> IRC: #sphinx-doc on irc.freenode.net
>>
>> Enjoy!
>>

-- 
You received this message because you are subscribed to the Google Groups 
"sphinx-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sphinx-users+unsubscr...@googlegroups.com.
To post to this group, send email to sphinx-users@googlegroups.com.
Visit this group at https://groups.google.com/group/sphinx-users.
For more options, visit https://groups.google.com/d/optout.


Re: [sphinx-users] Sphinx-1.8.0 released

2018-09-18 Thread Luc Saffre
PS : more concretely as a workaround, I added the following lines to my
conf.py file:

import os
os.environ['LC_TIME'] = 'en_UK.UTF-8'

Works for me.
Luc

On 13.09.2018 13:55, Luc Saffre wrote:
> Thanks again!
>
> This time I have a nice problem which caused me a few hours of fun:
> http://luc.lino-framework.org/blog/2018/0913.html
>
> Summary: Sphinx version 1.8 sets the locale to the one defined by the
> LC_TIME environment variable on my machine, despite the fact that in my
> conf.py I have language = 'en'. Yes, feedformatter fails when the locale
> is not English, they should fix this, but I don't see why Sphinx
> behaviour changes with the value of LC_TIME environment variable on my
> machine.  Yes, I live in Estonia, but that site with language = "en"
> should have nothing Estonian.
>
> Luc
>
>
> On 12.09.2018 19:22, Komiya Takeshi wrote:
>> Hi all,
>>
>> I'm delighted to announce the release of Sphinx 1.8.0 final, now available on
>> the Python package index at .
>>
>> It includes about 45 new features, 26 bug fixes and 25 incompatible
>> changes.
>>
>> For the full changelog, go to
>> .
>> Thanks to all collaborators and contributers!
>>
>> What is it?
>> ===
>>
>> Sphinx is a tool that makes it easy to create intelligent and beautiful
>> documentation for Python projects (or other documents consisting of
>> multiple reStructuredText source files).
>>
>> Website: http://sphinx-doc.org/
>> IRC: #sphinx-doc on irc.freenode.net
>>
>> Enjoy!
>>

-- 
You received this message because you are subscribed to the Google Groups 
"sphinx-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sphinx-users+unsubscr...@googlegroups.com.
To post to this group, send email to sphinx-users@googlegroups.com.
Visit this group at https://groups.google.com/group/sphinx-users.
For more options, visit https://groups.google.com/d/optout.


[sphinx-users] Sphinx-1.8.0 released

2018-09-13 Thread Luc Saffre
Thanks again!

This time I have a nice problem which caused me a few hours of fun:
http://luc.lino-framework.org/blog/2018/0913.html

Summary: Sphinx version 1.8 sets the locale to the one defined by the
LC_TIME environment variable on my machine, despite the fact that in my
conf.py I have language = 'en'. Yes, feedformatter fails when the locale
is not English, they should fix this, but I don't see why Sphinx
behaviour changes with the value of LC_TIME environment variable on my
machine.  Yes, I live in Estonia, but that site with language = "en"
should have nothing Estonian.

Luc


On 12.09.2018 19:22, Komiya Takeshi wrote:
> Hi all,
>
> I'm delighted to announce the release of Sphinx 1.8.0 final, now available on
> the Python package index at .
>
> It includes about 45 new features, 26 bug fixes and 25 incompatible
> changes.
>
> For the full changelog, go to
> .
> Thanks to all collaborators and contributers!
>
> What is it?
> ===
>
> Sphinx is a tool that makes it easy to create intelligent and beautiful
> documentation for Python projects (or other documents consisting of
> multiple reStructuredText source files).
>
> Website: http://sphinx-doc.org/
> IRC: #sphinx-doc on irc.freenode.net
>
> Enjoy!
>

-- 
You received this message because you are subscribed to the Google Groups 
"sphinx-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sphinx-users+unsubscr...@googlegroups.com.
To post to this group, send email to sphinx-users@googlegroups.com.
Visit this group at https://groups.google.com/group/sphinx-users.
For more options, visit https://groups.google.com/d/optout.


[sphinx-users] Sphinx-1.8.0 released

2018-09-12 Thread Komiya Takeshi
Hi all,

I'm delighted to announce the release of Sphinx 1.8.0 final, now available on
the Python package index at .

It includes about 45 new features, 26 bug fixes and 25 incompatible
changes.

For the full changelog, go to
.
Thanks to all collaborators and contributers!

What is it?
===

Sphinx is a tool that makes it easy to create intelligent and beautiful
documentation for Python projects (or other documents consisting of
multiple reStructuredText source files).

Website: http://sphinx-doc.org/
IRC: #sphinx-doc on irc.freenode.net

Enjoy!

-- 
You received this message because you are subscribed to the Google Groups 
"sphinx-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sphinx-users+unsubscr...@googlegroups.com.
To post to this group, send email to sphinx-users@googlegroups.com.
Visit this group at https://groups.google.com/group/sphinx-users.
For more options, visit https://groups.google.com/d/optout.