[Zope3-checkins] CVS: Zope3 - Makefile:1.36 README.txt:1.16
test.py:1.76 z3.py:1.22
Philipp von Weitershausen
cvs-admin at zope.org
Thu Oct 30 03:16:01 EST 2003
Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv18816
Modified Files:
Makefile README.txt test.py z3.py
Log Message:
Python 2.3.2 is required now.
=== Zope3/Makefile 1.35 => 1.36 ===
--- Zope3/Makefile:1.35 Thu Aug 21 10:17:58 2003
+++ Zope3/Makefile Thu Oct 30 03:15:30 2003
@@ -1,4 +1,4 @@
-PYTHON=python2.2
+PYTHON=python2.3
TESTFLAGS=-p -v
TESTOPTS=
SETUPFLAGS=
=== Zope3/README.txt 1.15 => 1.16 ===
--- Zope3/README.txt:1.15 Fri Jun 27 10:50:35 2003
+++ Zope3/README.txt Thu Oct 30 03:15:30 2003
@@ -12,16 +12,14 @@
Building and running tests
- Zope3 requires Python 2.2.3 or later and PyXML 0.8.1 or higher.
- PyXML can be downloaded from http://sf.net/projects/pyxml.
- (PyXML is not required if you're using Python 2.3.)
+ Zope3 requires Python 2.3.2 or later.
In the top-level Zope3 directory, you should find a script called
setup.py. Run it to build the extension modules needed by
Zope. Example::
# cd Zope3
- # python2.2 setup.py -q build_ext -i
+ # python2.3 setup.py -q build_ext -i
On a unix variant, you can just type: make
@@ -35,7 +33,7 @@
To run all the tests, use the script test.py::
- # python2.2 test.py -v
+ # python2.3 test.py -v
Use test.py -h for usage. The test script can run selected tests,
stop after the first error, run the tests in a loop, etc.
@@ -48,7 +46,7 @@
To run Zope just run the z3.py script:
- # python2.2 z3.py
+ # python2.3 z3.py
This will run Zope on port 8080. Visit the url:
=== Zope3/test.py 1.75 => 1.76 ===
--- Zope3/test.py:1.75 Mon Sep 22 18:37:22 2003
+++ Zope3/test.py Thu Oct 30 03:15:30 2003
@@ -1,4 +1,4 @@
-#! /usr/bin/env python2.2
+#! /usr/bin/env python2.3
##############################################################################
#
# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
@@ -785,12 +785,10 @@
elif k == '--dir':
test_dir = v
- if sys.version_info < ( 2,2,3 ):
+ if sys.version_info < ( 2,3,2 ):
print """\
ERROR: Your python version is not supported by Zope3.
- Zope3 needs either Python2.3 or Python2.2.3 or greater.
- In particular, Zope3 on Python2.2.2 is a recipe for
- pain. You are running:""" + sys.version
+ Zope3 needs Python 2.3.2 or greater. You are running:""" + sys.version
sys.exit(1)
if gcthresh is not None:
=== Zope3/z3.py 1.21 => 1.22 ===
--- Zope3/z3.py:1.21 Sat Jul 12 20:50:06 2003
+++ Zope3/z3.py Thu Oct 30 03:15:30 2003
@@ -1,4 +1,4 @@
-#! /usr/bin/env python2.2
+#! /usr/bin/env python2.3
##############################################################################
#
# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
@@ -25,12 +25,10 @@
def run(argv=list(sys.argv)):
- if sys.version_info < ( 2,2,3 ):
+ if sys.version_info < ( 2,3,2 ):
print """\
ERROR: Your python version is not supported by Zope3.
- Zope3 needs either Python2.3 or Python2.2.3 or greater.
- In particular, Zope3 on Python2.2.2 is a recipe for
- pain. You are running:""" + sys.version
+ Zope3 needs Python 2.3.2 or greater. You are running:""" + sys.version
sys.exit(1)
# Refuse to run without principals.zcml
More information about the Zope3-Checkins
mailing list