Skip to content

Commit

Permalink
📝 Version and doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
boisgera committed Jul 27, 2024
1 parent f20768e commit 0f09a52
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 14 deletions.
11 changes: 5 additions & 6 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: pandoc
channels:
- conda-forge
dependencies:
- python=3.10
- pandoc=3.1.1
- python=3.12.4
- pandoc=3.2
- plumbum
- ply
- pip
Expand All @@ -12,7 +12,6 @@ dependencies:
- twine
- black
- emoji
- pip:
- strictyaml # conda version if 1.6.0 and doesn't solve https://github.com/crdoconnor/strictyaml/issues/151
- mkdocs
- mkdocs-material==9.1.6
- strictyaml
- mkdocs
- mkdocs-material=9.1.6
4 changes: 2 additions & 2 deletions mkdocs/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ from pandoc.types import *

<h5>See also</h5>

Refer to the [Tree iteration section](#tree-iteration).
Refer to the [Tree iteration section](../iteration#tree-iteration).


??? note "`configure(auto=False, path=None, version=None, pandoc_types_version=None, read=False, reset=False)`"
Expand Down Expand Up @@ -372,7 +372,7 @@ from pandoc.types import *

<h5>See also</h5>

Refer to the [Configuration section](#configuration).
Refer to the [Configuration section](../configuration).


`pandoc.types`
Expand Down
4 changes: 2 additions & 2 deletions mkdocs/api.md.template
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ from pandoc.types import *

<h5>See also</h5>

Refer to the [Tree iteration section](#tree-iteration).
Refer to the [Tree iteration section](../iteration#tree-iteration).


??? note "`configure(auto=False, path=None, version=None, pandoc_types_version=None, read=False, reset=False)`"
Expand Down Expand Up @@ -372,7 +372,7 @@ from pandoc.types import *

<h5>See also</h5>

Refer to the [Configuration section](#configuration).
Refer to the [Configuration section](../configuration).


`pandoc.types`
Expand Down
4 changes: 2 additions & 2 deletions mkdocs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Hello Python!
!!! warning
This documentation is dedicated to the [latest version of the project
available on github](https://github.com/boisgera/pandoc).
It is automatically tested with Python 3.10 against pandoc 2.1.1.
It is automatically tested with Python 3.12.4 against pandoc 3.2.
At the moment I am writing this,
[the latest release of pandoc for conda](https://anaconda.org/conda-forge/pandoc)
is pandoc 3.1.1.
is pandoc 3.2.
2 changes: 1 addition & 1 deletion mkdocs/iteration.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ All concrete[^1] Pandoc element (of type `Pandoc`, `Para`, `Str`, etc.) are list
their items are the arguments passed to their constructor.
We present here several familiar methods to access this content.

[^1]: any custom pandoc type that can be instantiated. If needed, refer to the [kind of types](document/#kinds-of-types) section of the documentation for additional explanations.
[^1]: any custom pandoc type that can be instantiated. If needed, refer to the [kind of types](../document/#kinds-of-types) section of the documentation for additional explanations.

We illustrate this interface with the `"Hello world!"` document:

Expand Down
2 changes: 1 addition & 1 deletion src/pandoc/about.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# coding: utf-8

name = "pandoc"
version = "2.4b0"
version = "2.4b1"
license = "MIT License"
description = "Pandoc Documents for Python"
author = "Sébastien Boisgérault"
Expand Down

0 comments on commit 0f09a52

Please sign in to comment.