[Zope3-checkins] SVN: Zope3/trunk/ Zope 3 requires Pytohn 2.3.5
Egon Frerich
e.frerich at nord-com.net
Sat Jun 4 06:32:45 EDT 2005
Log message for revision 30640:
Zope 3 requires Pytohn 2.3.5
Changed:
U Zope3/trunk/README.txt
U Zope3/trunk/doc/INSTALL.txt
U Zope3/trunk/z3.py
U Zope3/trunk/zopeskel/bin/runzope.in
-=-
Modified: Zope3/trunk/README.txt
===================================================================
--- Zope3/trunk/README.txt 2005-06-04 04:16:10 UTC (rev 30639)
+++ Zope3/trunk/README.txt 2005-06-04 10:32:45 UTC (rev 30640)
@@ -12,7 +12,7 @@
Building and running tests
- Zope3 requires Python 2.3.4 or later.
+ See INSTALL.txt which Python version is required for Zope 3.
In the top-level Zope3 directory, you should find a script called
setup.py. Run it to build the extension modules needed by
Modified: Zope3/trunk/doc/INSTALL.txt
===================================================================
--- Zope3/trunk/doc/INSTALL.txt 2005-06-04 04:16:10 UTC (rev 30639)
+++ Zope3/trunk/doc/INSTALL.txt 2005-06-04 10:32:45 UTC (rev 30640)
@@ -84,7 +84,7 @@
and 'test.py' will run all of the unit tests (see UNITTEST.txt
in the doc directory for more information on unit tests).
- * You should be using Python 2.3.4 or later to run anything
+ * You should be using Python 2.3.5 or later to run anything
related to Zope3.
* The Python you run Zope with *must* have threads compiled in.
Modified: Zope3/trunk/z3.py
===================================================================
--- Zope3/trunk/z3.py 2005-06-04 04:16:10 UTC (rev 30639)
+++ Zope3/trunk/z3.py 2005-06-04 10:32:45 UTC (rev 30640)
@@ -23,10 +23,10 @@
def run(argv=list(sys.argv)):
- if sys.version_info < ( 2,3,4 ):
+ if sys.version_info < ( 2,3,5 ):
print """\
ERROR: Your python version is not supported by Zope3.
- Zope3 needs Python 2.3.4 or greater. You are running:""" + sys.version
+ Zope3 needs Python 2.3.5 or greater. You are running:""" + sys.version
sys.exit(1)
# Refuse to run without principals.zcml
Modified: Zope3/trunk/zopeskel/bin/runzope.in
===================================================================
--- Zope3/trunk/zopeskel/bin/runzope.in 2005-06-04 04:16:10 UTC (rev 30639)
+++ Zope3/trunk/zopeskel/bin/runzope.in 2005-06-04 10:32:45 UTC (rev 30640)
@@ -26,6 +26,12 @@
def run():
+ if sys.version_info < ( 2,3,5 ):
+ print """\
+ ERROR: Your python version is not supported by Zope3.
+ Zope3 needs Python 2.3.5 or greater. You are running:""" + sys.version
+ sys.exit(1)
+
# This removes the script directory from sys.path, which we do
# since there are no modules here.
#
More information about the Zope3-Checkins
mailing list