Skip to content

Commit 22cb209

Browse files
author
Jorgen Stenarson
committed
Doc changes and release changes for 1.7
1 parent 1dd0536 commit 22cb209

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

build-doc.bat

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
SET VERSION=1.7
22
python setup.py build_sphinx
3-
python setup.py build_sphinx -b latex
3+
rem python setup.py build_sphinx -b latex
44

5-
pushd build\sphinx\latex
6-
pdflatex pyreadline.tex
7-
pdflatex pyreadline.tex
8-
pdflatex pyreadline.tex
9-
popd
5+
rem pushd build\sphinx\latex
6+
rem pdflatex pyreadline.tex
7+
rem pdflatex pyreadline.tex
8+
rem pdflatex pyreadline.tex
9+
rem popd
1010

1111
mkdir dist
1212
copy build\sphinx\latex\pyreadline.pdf dist\pyreadline-%VERSION%.pdf

doc/source/introduction.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ console is still under development.
1313

1414
The pyreadline module does not yet support Python 3.x this will be targeted for the 2.0 version.
1515

16+
Version 1.7 will be the last release with compatibility with 2.4 and 2.5. The next
17+
major release will target 2.6, 2.7 and 3.x. The 1.7 series will only receive bugfixes
18+
from now on.
19+
1620

1721
Dependencies
1822
------------

doc/source/known_issues.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ Known issues
66
from the install directory. This will not interfere with ipython usage, but you will
77
not be able to use the rlcompleter module which requires the readline.py module.
88

9-
* reverse search does not work
9+
* Forward incremental search using ctrl-s is flaky because no keyrelease events are generated for ctrl-s
10+
we use keypress events instead. As a work around ctrl-shift-r is also bound to forward incremental search.
1011

1112
* #488177 exceptions occur when using pyreadline on windows 2008 r2
1213

pyreadline/release.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@
3434
it is based on the ctypes based UNC readline package by Gary Bishop.
3535
It is not complete. It has been tested for use with windows 2000 and windows xp.
3636
37+
Version 1.7 will be the last release with compatibility with 2.4 and 2.5. The next
38+
major release will target 2.6, 2.7 and 3.x. The 1.7 series will only receive bugfixes
39+
from now on.
40+
3741
Features:
3842
* keyboard text selection and copy/paste
3943
* Shift-arrowkeys for text selection

0 commit comments

Comments
 (0)