[Checkins] SVN: grokproject/trunk/ No longer pin the grok version in the generated setup.py as that would

Maurits van Rees m.van.rees at zestsoftware.nl
Tue Jul 1 08:44:53 EDT 2008


Log message for revision 87882:
  No longer pin the grok version in the generated setup.py as that would
  make a generated project work only with one specific grok version,
  which is too restrictive.  That kind of pinning can be done in
  buildout.cfg (versions.cfg).
  

Changed:
  U   grokproject/trunk/CHANGES.txt
  U   grokproject/trunk/grokproject/template/setup.py_tmpl

-=-
Modified: grokproject/trunk/CHANGES.txt
===================================================================
--- grokproject/trunk/CHANGES.txt	2008-07-01 12:12:28 UTC (rev 87881)
+++ grokproject/trunk/CHANGES.txt	2008-07-01 12:44:52 UTC (rev 87882)
@@ -4,8 +4,7 @@
 0.8 (unreleased)
 ------------------
 
-* Pinned the required grok version in the generated setup.py.
-  Pinned the required PasteScript version in setup.py of grokproject.
+* Pinned the required PasteScript version in setup.py of grokproject.
   Refs https://bugs.launchpad.net/grok/+bug/242370
 
 * Actually added the required eggbasket section to the generated

Modified: grokproject/trunk/grokproject/template/setup.py_tmpl
===================================================================
--- grokproject/trunk/grokproject/template/setup.py_tmpl	2008-07-01 12:12:28 UTC (rev 87881)
+++ grokproject/trunk/grokproject/template/setup.py_tmpl	2008-07-01 12:44:52 UTC (rev 87882)
@@ -19,7 +19,7 @@
       include_package_data=True,
       zip_safe=${repr(bool(zip_safe))|False},
       install_requires=['setuptools',
-                        'grok==${grokversion}',
+                        'grok',
                         'z3c.testsetup',
                         # Add extra requirements here
                         ],



More information about the Checkins mailing list