Skip to content

Commit

Permalink
Use anonymous target names for URL links
Browse files Browse the repository at this point in the history
Otherwise some of these generate duplicate names (because they have the
same caption), which triggers warnings when rendering the README
content -- and PyPI in particular isn't happy about it.

Signed-off-by: Rodrigo Tobar <rtobar@icrar.org>
  • Loading branch information
rtobar committed Jan 3, 2023
1 parent a2b63cd commit 63884b3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Development version

* Fixed minor README rendering issues
that prevented upload of 3.2.0 distributions
to PyPI.

## [3.2.0]

* New ``ijson.dump`` command-line utility
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -432,12 +432,12 @@ Backends
Ijson provides several implementations of the actual parsing in the form of
backends located in ijson/backends:

- ``yajl2_c``: a C extension using `YAJL <http://lloyd.github.com/yajl/>`_ 2.x.
- ``yajl2_c``: a C extension using `YAJL <http://lloyd.github.com/yajl/>`__ 2.x.
This is the fastest, but *might* require a compiler and the YAJL development files
to be present when installing this package.
Binary wheel distributions exist for major platforms/architectures to spare users
from having to compile the package.
- ``yajl2_cffi``: wrapper around `YAJL <http://lloyd.github.com/yajl/>`_ 2.x
- ``yajl2_cffi``: wrapper around `YAJL <http://lloyd.github.com/yajl/>`__ 2.x
using CFFI.
- ``yajl2``: wrapper around YAJL 2.x using ctypes, for when you can't use CFFI
for some reason.
Expand Down Expand Up @@ -599,7 +599,7 @@ the maintenance of the project and the PyPI ownership.
Python parser in ijson is relatively simple thanks to `Douglas Crockford
<http://www.crockford.com/>`_ who invented a strict, easy to parse syntax.

The `YAJL <https://lloyd.github.io/yajl>`_ library by `Lloyd Hilaiel
The `YAJL <https://lloyd.github.io/yajl>`__ library by `Lloyd Hilaiel
<http://lloyd.io/>`_ is the most popular and efficient way to parse JSON in an
iterative fashion.

Expand Down

0 comments on commit 63884b3

Please sign in to comment.