[Python-announce] Sphinx-5.0.0 is out

2022-05-29 Thread Komiya Takeshi
Hi all,

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

It includes many changes including incompatible ones.
Please confirm it working fine on your documents.

In detail, please see CHANGES:
https://github.com/sphinx-doc/sphinx/blob/5.0.x/CHANGES

Thanks to all collaborators and contributors!

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/

Enjoy!
___
Python-announce-list mailing list -- python-announce-list@python.org
To unsubscribe send an email to python-announce-list-le...@python.org
https://mail.python.org/mailman3/lists/python-announce-list.python.org/
Member address: arch...@mail-archive.com


[Python-announce] Sphinx-5.0.0b1 released

2022-05-08 Thread Komiya Takeshi
Hi all,

We just released Sphinx-5.0.0b1.
It has many changes including incompatible ones.
Please confirm it working fine on your documents.

In detail, please see CHANGES:
https://github.com/sphinx-doc/sphinx/blob/5.0.x/CHANGES

You can use it with: pip install --pre Sphinx

Since this is a beta release, we expect that you may encounter bugs.
If you find a bug, please file an issue on Github issues:
https://github.com/sphinx-doc/sphinx/issues

Thanks,
Takeshi KOMIYA
___
Python-announce-list mailing list -- python-announce-list@python.org
To unsubscribe send an email to python-announce-list-le...@python.org
https://mail.python.org/mailman3/lists/python-announce-list.python.org/
Member address: arch...@mail-archive.com


[issue44799] typing.get_type_hints() raises TypeError for a variable annotated by dataclasses.InitVar

2021-07-31 Thread Komiya Takeshi


New submission from Komiya Takeshi :

I found `typing.get_type_hints()` raises TypeError for a variable annotated by 
`dataclasses.InitVar` when lazy annotations evaluation-feature is enabled 
(a.k.a `__future__.annotations`).

```
$ cat test.py
from __future__ import annotations
from dataclasses import dataclass, InitVar
from typing import get_type_hints

@dataclass
class Foo:
attr: InitVar[int]


get_type_hints(Foo)
```

```
$ python -V
Python 3.9.6
$ python test.py
Traceback (most recent call last):
  File "/Users/tkomiya/work/sphinx/test.py", line 10, in 
get_type_hints(Foo)
  File "/Users/tkomiya/.pyenv/versions/3.9.6/lib/python3.9/typing.py", line 
1424, in get_type_hints
value = _eval_type(value, base_globals, localns)
  File "/Users/tkomiya/.pyenv/versions/3.9.6/lib/python3.9/typing.py", line 
290, in _eval_type
return t._evaluate(globalns, localns, recursive_guard)
  File "/Users/tkomiya/.pyenv/versions/3.9.6/lib/python3.9/typing.py", line 
545, in _evaluate
type_ =_type_check(
  File "/Users/tkomiya/.pyenv/versions/3.9.6/lib/python3.9/typing.py", line 
164, in _type_check
raise TypeError(f"{msg} Got {arg!r:.100}.")
TypeError: Forward references must evaluate to types. Got 
dataclasses.InitVar[int].
```

It goes well if lazy annotations evaluation is disabled.

--
components: Library (Lib)
messages: 398650
nosy: tkomiya
priority: normal
severity: normal
status: open
title: typing.get_type_hints() raises TypeError for a variable annotated by 
dataclasses.InitVar
versions: Python 3.10, Python 3.8, Python 3.9

___
Python tracker 
<https://bugs.python.org/issue44799>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



Sphinx-4.0.0 is out

2021-05-08 Thread Komiya Takeshi
Hi all,

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

It includes many changes including incompatible ones.
Please confirm it working fine on your documents.

In detail, please see CHANGES:
https://github.com/sphinx-doc/sphinx/blob/4.0.x/CHANGES

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/

Enjoy!
___
Python-announce-list mailing list -- python-announce-list@python.org
To unsubscribe send an email to python-announce-list-le...@python.org
https://mail.python.org/mailman3/lists/python-announce-list.python.org/
Member address: arch...@mail-archive.com


Re: Sphinx-4.0.0b1 released

2021-04-29 Thread Komiya Takeshi
Hi all,

We just released Sphinx-4.0.0b2.
It has many changes including incompatible ones.
Please confirm it working fine on your documents.

In detail, please see CHANGES:
https://github.com/sphinx-doc/sphinx/blob/4.0.x/CHANGES

You can use it with: pip install --pre Sphinx

Since this is a beta release, we expect that you may encounter bugs.
If you find a bug, please file an issue on Github issues:
https://github.com/sphinx-doc/sphinx/issues

Thanks,
Takeshi KOMIYA

2021年4月12日(月) 0:40 Komiya Takeshi :
>
> Hi all,
>
> We just released Sphinx-4.0.0b1.
> It has many changes including incompatible ones.
> Please confirm it working fine on your documents.
>
> In detail, please see CHANGES:
> https://github.com/sphinx-doc/sphinx/blob/4.0.x/CHANGES
>
> You can use it with: pip install --pre Sphinx
>
> Since this is a beta release, we expect that you may encounter bugs.
> If you find a bug, please file an issue on Github issues:
> https://github.com/sphinx-doc/sphinx/issues
>
> Thanks,
> Takeshi KOMIYA
___
Python-announce-list mailing list -- python-announce-list@python.org
To unsubscribe send an email to python-announce-list-le...@python.org
https://mail.python.org/mailman3/lists/python-announce-list.python.org/
Member address: arch...@mail-archive.com


Sphinx-4.0.0b1 released

2021-04-11 Thread Komiya Takeshi
Hi all,

We just released Sphinx-4.0.0b1.
It has many changes including incompatible ones.
Please confirm it working fine on your documents.

In detail, please see CHANGES:
https://github.com/sphinx-doc/sphinx/blob/4.0.x/CHANGES

You can use it with: pip install --pre Sphinx

Since this is a beta release, we expect that you may encounter bugs.
If you find a bug, please file an issue on Github issues:
https://github.com/sphinx-doc/sphinx/issues

Thanks,
Takeshi KOMIYA
___
Python-announce-list mailing list -- python-announce-list@python.org
To unsubscribe send an email to python-announce-list-le...@python.org
https://mail.python.org/mailman3/lists/python-announce-list.python.org/
Member address: arch...@mail-archive.com


[issue43118] inspect.signature() raises RuntimeError on failed to resolve the default argument value

2021-02-03 Thread Komiya Takeshi


Komiya Takeshi  added the comment:

FWIW, I succeeded to inspect the class with importing the constant from the 
base module as a workaround:

```
import inspect
import io

from io import DEFAULT_BUFFER_SIZE


class MyBufferedReader(io.BufferedReader):
"""buffer reader class."""


inspect.signature(MyBufferedReader)
```

--

___
Python tracker 
<https://bugs.python.org/issue43118>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue43118] inspect.signature() raises RuntimeError on failed to resolve the default argument value

2021-02-03 Thread Komiya Takeshi


New submission from Komiya Takeshi :

inspect.signature() raises RuntimeError on failed to resolve the default 
argument value. For example, it fails to inspect a subclass of 
io.BufferedReader:

Example:
```
import inspect
import io


class MyBufferedReader(io.BufferedReader):
"""buffer reader class."""


inspect.signature(MyBufferedReader)
```

Result:
```
Traceback (most recent call last):
  File "/Users/tkomiya/.pyenv/versions/3.9.1/lib/python3.9/inspect.py", line 
2042, in wrap_value
value = eval(s, module_dict)
  File "", line 1, in 
NameError: name 'DEFAULT_BUFFER_SIZE' is not defined

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/Users/tkomiya/.pyenv/versions/3.9.1/lib/python3.9/inspect.py", line 
2045, in wrap_value
value = eval(s, sys_module_dict)
  File "", line 1, in 
NameError: name 'DEFAULT_BUFFER_SIZE' is not defined

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/Users/tkomiya/work/tmp/doc/example.py", line 9, in 
inspect.signature(MyBufferedReader)
  File "/Users/tkomiya/.pyenv/versions/3.9.1/lib/python3.9/inspect.py", line 
3130, in signature
return Signature.from_callable(obj, follow_wrapped=follow_wrapped)
  File "/Users/tkomiya/.pyenv/versions/3.9.1/lib/python3.9/inspect.py", line 
2879, in from_callable
return _signature_from_callable(obj, sigcls=cls,
  File "/Users/tkomiya/.pyenv/versions/3.9.1/lib/python3.9/inspect.py", line 
2397, in _signature_from_callable
return _signature_fromstr(sigcls, obj, text_sig)
  File "/Users/tkomiya/.pyenv/versions/3.9.1/lib/python3.9/inspect.py", line 
2095, in _signature_fromstr
p(name, default)
  File "/Users/tkomiya/.pyenv/versions/3.9.1/lib/python3.9/inspect.py", line 
2077, in p
default_node = RewriteSymbolics().visit(default_node)
  File "/Users/tkomiya/.pyenv/versions/3.9.1/lib/python3.9/ast.py", line 407, 
in visit
return visitor(node)
  File "/Users/tkomiya/.pyenv/versions/3.9.1/lib/python3.9/inspect.py", line 
2069, in visit_Name
return wrap_value(node.id)
  File "/Users/tkomiya/.pyenv/versions/3.9.1/lib/python3.9/inspect.py", line 
2047, in wrap_value
raise RuntimeError()
RuntimeError
```


In my investigation, inspect.signature() tries to evaluate the default argument 
value of the class constructor. But it fails to evaluate because of the 2nd 
argument of the constructor takes a constant; `DEFAULT_BUFFER_SIZE`, but it is 
not found on the current context.

I think it would be better to search the constants for the modules of the base 
classes. I just made a simple patch to resolve this bug.

--
components: Library (Lib)
files: inspect.patch
keywords: patch
messages: 386212
nosy: i.tkomiya
priority: normal
severity: normal
status: open
title: inspect.signature() raises RuntimeError on failed to resolve the default 
argument value
versions: Python 3.10, Python 3.6, Python 3.7, Python 3.8, Python 3.9
Added file: https://bugs.python.org/file49788/inspect.patch

___
Python tracker 
<https://bugs.python.org/issue43118>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue42288] typing.get_type_hints() returns Optional[Any] if the default value of the argument is None

2020-11-10 Thread Komiya Takeshi


Komiya Takeshi  added the comment:

Wow, I don't know that behavior. Thank you for your wisdom!

--

___
Python tracker 
<https://bugs.python.org/issue42288>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue42288] typing.get_type_hints() returns Optional[Any] if the default value of the argument is None

2020-11-07 Thread Komiya Takeshi


New submission from Komiya Takeshi :

I noticed `typing.get_type_hints()` returns Optional[Any] as a type hints if 
the default value of the argument is None:

```
$ python
Python 3.9.0 (default, Oct 24 2020, 15:41:29)
[Clang 11.0.3 (clang-1103.0.32.59)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> from typing import Any, get_type_hints
>>> def hello(name: Any = None):
... pass
...
>>> get_type_hints(hello)
{'name': typing.Optional[typing.Any]}
```

I know typing.get_type_hints() wraps the user's type annotation with Optional 
when the default value of the argument is None. But it is needless to wrap Any 
with Optional because Any already contains None. It would be better not to wrap 
it with Optional when the user's annotation is Any.

--
messages: 380532
nosy: i.tkomiya
priority: normal
severity: normal
status: open
title: typing.get_type_hints() returns Optional[Any] if the default value of 
the argument is None
versions: Python 3.10, Python 3.6, Python 3.7, Python 3.8, Python 3.9

___
Python tracker 
<https://bugs.python.org/issue42288>
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



Sphinx-3.0.0b1 released.

2020-03-22 Thread Komiya Takeshi
Hi all,

We just released Sphinx-3.0.0b1.
It has many changes including incompatible ones.
Please confirm it working fine on your documents.

In detail, please see CHANGES:
https://github.com/sphinx-doc/sphinx/blob/3.0.x/CHANGES

You can use it with: pip install --pre Sphinx

Since this is a beta release, we expect that you may encounter bugs.
If you find a bug, please file an issue on Github issues:
https://github.com/sphinx-doc/sphinx/issues

Thanks,
Takeshi KOMIYA
--
Python-announce-list mailing list -- python-announce-list@python.org
To unsubscribe send an email to python-announce-list-le...@python.org
https://mail.python.org/mailman3/lists/python-announce-list.python.org/

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx-2.4.0 released.

2020-02-09 Thread Komiya Takeshi
Hi all,

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

It includes about 18 new features and 23 bug fixes.
Especially, autodoc is much improved in this release. I wrote an
article to explain the improvement in my blog. I believe it is very
useful many python developers :-)
https://tk0miya.hatenablog.com/entry/2020/02/09/190523

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!
--
Python-announce-list mailing list -- python-announce-list@python.org
To unsubscribe send an email to python-announce-list-le...@python.org
https://mail.python.org/mailman3/lists/python-announce-list.python.org/

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx-2.1.0 released

2019-06-04 Thread Komiya Takeshi
Hi all,

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

It includes about 25 new features, 21 bug fixes and 5 incompatible
changes. Especially, autodoc and autosummary are much improved.

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!

Takeshi KOMIYA: i.tkom...@gmail.com
`patreon `_
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx-2.0.0 released

2019-04-02 Thread Komiya Takeshi
Hi all,

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

It includes about 22 new features, 28 bug fixes and 22 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!
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx-2.0.0 beta1 released.

2019-02-25 Thread Komiya Takeshi
Hi all,

We released Sphinx 2.0.0b1 at last night.
It includes much of improvements. And It also contains breaking API changes.
So we need your help to check it working fine on your document.

In detail, please see CHANGES:
https://github.com/sphinx-doc/sphinx/blob/v2.0.0b1/CHANGES

You can use it with: pip install --pre Sphinx

Since this is a beta release, we expect that you may encounter bugs.
If you find a bug, please report it on github issues:
https://github.com/sphinx-doc/sphinx/issues

Thanks,
Takeshi KOMIYA
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx-1.8.0 released

2018-09-13 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!
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx-1.7.0 has been released

2018-02-12 Thread Komiya Takeshi
Hi all,

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

It includes about 34 new features and 31 bug fixes for the 1.6 release series.

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!
--
Takeshi KOMIYA
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx-1.6.2 has been released

2017-05-29 Thread Komiya Takeshi
Hi all,

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

It includes about 23 bug fixes for the 1.6.1 release series.

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!
--
Takeshi KOMIYA
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx-1.6 final has been released

2017-05-16 Thread Komiya Takeshi
Hi all,

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

It includes about 33 new features, 29 bug fixes and 23 incompatible
changes for the 1.5.6 release.

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!
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx-1.6b2 has been released

2017-05-02 Thread Komiya Takeshi
Hi all,

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

It includes about 29 new feature and 14 bug fixes for the 1.5.x release series.

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!
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx-1.5.3 has been released

2017-02-27 Thread Komiya Takeshi
Hi all,

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

It includes about 3 new feature and 16 bug fixes for the 1.5.2 release series.

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!
--

Takeshi KOMIYA
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx-1.5.2 has been released

2017-01-23 Thread Komiya Takeshi
Hi all,

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

It includes about 5 new feature and 28 bug fixes for the 1.5.1 release series.

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!
--

Takeshi KOMIYA
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx-1.5.1 has been released

2016-12-14 Thread Komiya Takeshi
Hi all,

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

It includes about 1 new feature and 11 bug fixes for the 1.5 release series.

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!
--
Takeshi KOMIYA
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx-1.4.9 has been released

2016-11-26 Thread Komiya Takeshi
Hi all,

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

It includes about 11 bug fixes for the 1.4.8 release series.

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!
--
Takeshi KOMIYA
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx-1.4.7 released

2016-10-03 Thread Komiya Takeshi
Hi all,

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

It includes about 16 bug fixes for the 1.4.6 release series.

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!
--
Takeshi KOMIYA
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx-1.4.6 released

2016-08-22 Thread Komiya Takeshi
Hi all,

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

It includes about 1 incompatible change and 12 bug fixes for the 1.4.5
release series.

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!
--
Takeshi KOMIYA
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx-1.4.5 released

2016-07-13 Thread Komiya Takeshi
Hi all,

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

It includes about 2 incompatible changes, 3 features added and 22 bug fixes
for the 1.4.4 release series.

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!
--
Takeshi KOMIYA
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx 1.4.4 released

2016-06-12 Thread Komiya Takeshi
Hi all,

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

It includes about 10 bug fixes for the 1.4.3 release
series, among them a incompatibility and a packaging error.

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!
--
Takeshi KOMIYA
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx 1.4.3 released

2016-06-06 Thread Komiya Takeshi
Hi all,

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

It includes about 10 bug fixes for the 1.4.2 release
series, among them a incompatibility and a packaging error.

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!
--
Takeshi KOMIYA
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/


Sphinx 1.4.2 released

2016-05-29 Thread Komiya Takeshi
Hi all,

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

It includes about 4 features and 44 bug fixes for the 1.4.1 release
series, among them a incompatibility and a packaging error.

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!
--
Takeshi KOMIYA
-- 
https://mail.python.org/mailman/listinfo/python-announce-list

Support the Python Software Foundation:
http://www.python.org/psf/donations/