Skip to content

Commit 57f9f10

Browse files
committed
v0.19
1 parent 2e1e3c7 commit 57f9f10

10 files changed

Lines changed: 132 additions & 44 deletions

File tree

NEWS.rst

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Version History
77
===============
88

99

10-
v0.19 (dev)
11-
-----------
10+
v0.19 (2026/02/15)
11+
------------------
1212

1313
* Fixed backslash escapes in docstrings and regexes for syntax compatibility
1414
with Python 3.11+.
@@ -19,14 +19,21 @@ v0.19 (dev)
1919
3.14 (#229).
2020

2121
* Fixed a bug that could cause non-Windows operating systems to attempt to
22-
invoke a batch file when the executable associated with a language is
23-
not found (#225).
22+
invoke a nonexistent batch file when the executable associated with a
23+
language is not found (#225).
2424

2525
* Replaced doctype ``tex`` with ``texminted`` for ``Weave.jl`` (#219).
2626

2727
* Fixed a bug that resulted in uncaught exceptions when ``\inputpygments``
2828
was used with files that do not exist (#64).
2929

30+
* Fixed a bug in tracking the number of Pygments errors (#206).
31+
32+
* Improved error messages (#207, #209). Improved documentation for
33+
``--error-exit-code`` (#208).
34+
35+
* Several minor improvements to documentation.
36+
3037

3138

3239
v0.18 (2021/06/06)

pythontex/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
===================================================================
44

55
:Author: Geoffrey Poore
6-
:Version: 0.18 (2021/06/06)
6+
:Version: 0.19 (2026/02/15)
77
:License: LPPL v1.3 or later (LaTeX code) and BSD 3-Clause (Python code)
88
:Development: https://github.com/gpoore/pythontex
99
:Requirements: Python 2.7 or 3.2+; Pygments

pythontex/depythontex2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686

8787
# Script parameters
8888
# Version
89-
__version__ = '0.19dev'
89+
__version__ = '0.19'
9090

9191

9292
# Functions and parameters for customizing the script output

pythontex/depythontex3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686

8787
# Script parameters
8888
# Version
89-
__version__ = '0.19dev'
89+
__version__ = '0.19'
9090

9191

9292
# Functions and parameters for customizing the script output

pythontex/pythontex.dtx

Lines changed: 113 additions & 32 deletions
Large diffs are not rendered by default.

pythontex/pythontex.pdf

21.4 KB
Binary file not shown.

pythontex/pythontex.sty

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
%%
2121
\NeedsTeXFormat{LaTeX2e}[1999/12/01]
2222
\ProvidesPackage{pythontex}
23-
[2026/02/12 v0.19dev execute and typeset Python code and other languages]
23+
[2026/02/15 v0.19 execute and typeset Python code and other languages]
2424

2525
\newcommand{\pytx@packagename}{PythonTeX}
26-
\newcommand{\pytx@packageversion}{0.19dev}
26+
\newcommand{\pytx@packageversion}{0.19}
2727
\RequirePackage{fvextra}
2828
\RequirePackage{etoolbox}
2929
\RequirePackage{xstring}

pythontex/pythontex2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878

7979
# Script parameters
8080
# Version
81-
__version__ = '0.19dev'
81+
__version__ = '0.19'
8282

8383

8484

pythontex/pythontex3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878

7979
# Script parameters
8080
# Version
81-
__version__ = '0.19dev'
81+
__version__ = '0.19'
8282

8383

8484

pythontex_gallery/pythontex_gallery.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ \section{Plots with matplotlib}
166166
rc('font', weight='normal')
167167
x = linspace(0, 10)
168168
figure(figsize=(4, 2.5))
169-
plot(x, sin(x), label='$\sin(x)$')
169+
plot(x, sin(x), label=r'$\sin(x)$')
170170
xlabel(r'$x\mathrm{-axis}$')
171171
ylabel(r'$y\mathrm{-axis}$')
172172
legend(loc='lower right')

0 commit comments

Comments
 (0)