Skip to content
This repository was archived by the owner on Oct 17, 2021. It is now read-only.

Commit 441fa3b

Browse files
authored
Merge pull request #37 from florentx/require26
Bump required Python version to 2.6 instead of 2.4
2 parents 031c087 + 61045dc commit 441fa3b

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

BUGS.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ Bugs and Known Problems
33

44
AsciiDoc
55
--------
6-
- A benign warning 'with will become a reserved keyword
7-
in Python 2.6' sometimes occurs when using Python 2.5 -- it's
8-
harmless and will disappear with Python 3.
96
- Reported line numbers in diagnostic messages are sometimes wrong.
107
- Attribute references in macro attribute lists can't be unescaped
118
(with the exception of attribute list entry `{0}`).

INSTALL.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
AsciiDoc Installation
22
=====================
33

4-
NOTE: The current version of AsciiDoc requires *Python 2.4 or newer*
4+
NOTE: The current version of AsciiDoc requires *Python 2.6 or 2.7*
55
to run. If you don't already have an up-to-date version of Python
66
installed it can be downloaded from the official Python website
77
http://www.python.org/.

README.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ SGML/XML markup) can be customized and extended by the user.
1414
Prerequisites
1515
-------------
1616
AsciiDoc is written in Python so you need a Python interpreter
17-
(version 2.4 or later) to execute asciidoc(1). Python is installed by
17+
(version 2.6 or 2.7) to execute asciidoc(1). Python is installed by
1818
default in most Linux distributions. You can download Python from the
1919
official Python website http://www.python.org.
2020

asciidoc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
### Used by asciidocapi.py ###
1212
VERSION = '8.6.9' # See CHANGLOG file for version history.
1313

14-
MIN_PYTHON_VERSION = '2.4' # Require this version of Python or better.
14+
MIN_PYTHON_VERSION = '2.6' # Require this version of Python or better.
1515

1616
#---------------------------------------------------------------------------
1717
# Program constants.

0 commit comments

Comments
 (0)