[Checkins] SVN: five.grok/branches/sylvain-static-and-forms/ - Use the way to mark the package as a dev package than in grokcore packages,

Sylvain Viollon sylvain at infrae.com
Thu Sep 25 08:22:53 EDT 2008


Log message for revision 91473:
  - Use the way to mark the package as a dev package than in grokcore packages,
  
  - Use release of grokcore.{view,formlib}.
  
  

Changed:
  U   five.grok/branches/sylvain-static-and-forms/buildout.cfg
  D   five.grok/branches/sylvain-static-and-forms/devel/
  D   five.grok/branches/sylvain-static-and-forms/setup.cfg
  U   five.grok/branches/sylvain-static-and-forms/setup.py

-=-
Modified: five.grok/branches/sylvain-static-and-forms/buildout.cfg
===================================================================
--- five.grok/branches/sylvain-static-and-forms/buildout.cfg	2008-09-25 09:16:46 UTC (rev 91472)
+++ five.grok/branches/sylvain-static-and-forms/buildout.cfg	2008-09-25 12:22:51 UTC (rev 91473)
@@ -5,8 +5,6 @@
     zopepy
     test
 develop = .
-          devel/grokcore.view
-          devel/grokcore.formlib
 
 newest = false
 
@@ -26,8 +24,6 @@
 verbose-security = on
 eggs =
     zope.component>=3.4,<3.5dev
-    grokcore.view
-    grokcore.formlib
     five.grok
 zcml = five.grok:meta.zcml
        five.grok

Deleted: five.grok/branches/sylvain-static-and-forms/setup.cfg
===================================================================
--- five.grok/branches/sylvain-static-and-forms/setup.cfg	2008-09-25 09:16:46 UTC (rev 91472)
+++ five.grok/branches/sylvain-static-and-forms/setup.cfg	2008-09-25 12:22:51 UTC (rev 91473)
@@ -1,3 +0,0 @@
-[egg_info]
-tag_build = dev
-tag_svn_revision = true

Modified: five.grok/branches/sylvain-static-and-forms/setup.py
===================================================================
--- five.grok/branches/sylvain-static-and-forms/setup.py	2008-09-25 09:16:46 UTC (rev 91472)
+++ five.grok/branches/sylvain-static-and-forms/setup.py	2008-09-25 12:22:51 UTC (rev 91473)
@@ -1,14 +1,13 @@
 from setuptools import setup, find_packages
 import os
 
-version = '0.1'
+version = '1.0dev'
 
 setup(name='five.grok',
       version=version,
       description="Grok-like layer for Zope 2",
       long_description=open("README.txt").read() + "\n" +
                        open(os.path.join("docs", "HISTORY.txt")).read(),
-      # Get more strings from http://www.python.org/pypi?:action=list_classifiers
       classifiers=[
           "Environment :: Web Environment",
           "Intended Audience :: Developers",
@@ -32,7 +31,7 @@
           'martian',
           'grokcore.component',
           'grokcore.security',
-          'grokcore.view > 1.0',
+          'grokcore.view >= 1.1',
           'grokcore.formlib',
       ],
       entry_points="""



More information about the Checkins mailing list