Skip to content

Commit be277a2

Browse files
author
Richard Jones
committed
clarify python version
1 parent 82f5b75 commit be277a2

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

doc/announcement.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Though some new features made it in also:
2424
If you're upgrading from an older version of Roundup you *must* follow
2525
the "Software Upgrade" guidelines given in the maintenance documentation.
2626

27-
Roundup requires python 2.3 or later for correct operation.
27+
Roundup requires python 2.3 or later (but not 3+) for correct operation.
2828

2929
To give Roundup a try, just download (see below), unpack and run::
3030

@@ -58,9 +58,9 @@ Roundup manages a number of issues (with flexible properties such as
5858
The system will facilitate communication among the participants by managing
5959
discussions and notifying interested parties when issues are edited. One of
6060
the major design goals for Roundup that it be simple to get going. Roundup
61-
is therefore usable "out of the box" with any python 2.3+ installation. It
62-
doesn't even need to be "installed" to be operational, though a
63-
disutils-based install script is provided.
61+
is therefore usable "out of the box" with any python 2.3+ (but not 3+)
62+
installation. It doesn't even need to be "installed" to be operational,
63+
though an install script is provided.
6464

6565
It comes with two issue tracker templates (a classic bug/feature tracker and
6666
a minimal skeleton) and four database back-ends (anydbm, sqlite, mysql

doc/features.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ from Ka-Ping Yee in the Software Carpentry "Track" design competition.
1212
- two templates included in the distribution for you to base your tracker on
1313
- play with the demo, customise it and then use *it* as the template for
1414
your production tracker
15-
- requires *no* additional support software - python (2.3+) is
15+
- requires *no* additional support software - python (2.3+ but not 3+) is
1616
enough to get you going
1717
- easy to set up higher-performance storage backends like sqlite_,
1818
mysql_ and postgresql_

doc/installation.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ Roundup scripts
3030
Prerequisites
3131
=============
3232

33-
Roundup requires Python 2.3 or newer with a functioning anydbm
34-
module. Download the latest version from http://www.python.org/.
33+
Roundup requires Python 2.3 or newer (but not Python 3) with a functioning
34+
anydbm module. Download the latest version from http://www.python.org/.
3535
It is highly recommended that users install the latest patch version
3636
of python as these contain many fixes to serious bugs.
3737

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def main():
116116
If you're upgrading from an older version of Roundup you *must* follow
117117
the "Software Upgrade" guidelines given in the maintenance documentation.
118118
119-
Roundup requires python 2.3 or later for correct operation.
119+
Roundup requires python 2.3 or later (but not 3+) for correct operation.
120120
121121
To give Roundup a try, just download (see below), unpack and run::
122122
@@ -147,9 +147,9 @@ def main():
147147
The system will facilitate communication among the participants by managing
148148
discussions and notifying interested parties when issues are edited. One of
149149
the major design goals for Roundup that it be simple to get going. Roundup
150-
is therefore usable "out of the box" with any python 2.3+ installation. It
151-
doesn't even need to be "installed" to be operational, though a
152-
disutils-based install script is provided.
150+
is therefore usable "out of the box" with any python 2.3+ (but not 3+)
151+
installation. It doesn't even need to be "installed" to be operational,
152+
though an install script is provided.
153153
154154
It comes with two issue tracker templates (a classic bug/feature tracker and
155155
a minimal skeleton) and five database back-ends (anydbm, sqlite, metakit,

0 commit comments

Comments
 (0)