RajatShukla / getpaid

Automatically exported from code.google.com/p/getpaid
0 stars 0 forks source link

getpaid.formgen should require Products.DataGridField >= 1.6rc1, < 1.8a1 (on Plone 3) #283

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. clean buildout with addpackages = getpaid.formgen

Please provide any additional information below.

Package getpaid.formgen requires Products.DataGridField >= 1.6rc1, but
Products.DataGridField >= 1.8a1 works only with Plone 4.

Buildout finishes successfully on Plone 3.x when getpaid.formgen is fixed
to require Products.DataGridField >= 1.6rc1, < 1.8a1.

See: http://pypi.python.org/pypi/Products.DataGridField/1.8a1

Original issue reported on code.google.com by dataku...@gmail.com on 5 Jan 2010 at 8:56

GoogleCodeExporter commented 8 years ago
Index: setup.py
===================================================================
--- setup.py    (revision 3279)
+++ setup.py    (working copy)
@@ -27,7 +27,7 @@
       zip_safe=False,
       install_requires=[
           'setuptools',
-          'Products.DataGridField >= 1.6rc1',
+          'Products.DataGridField >= 1.6rc1, < 1.8a1',
           'Products.PloneFormGen'
       ],
       entry_points="""

Original comment by dataku...@gmail.com on 5 Jan 2010 at 9:19

GoogleCodeExporter commented 8 years ago

Original comment by dataku...@gmail.com on 5 Jan 2010 at 9:20

Attachments:

GoogleCodeExporter commented 8 years ago
Fixed in http://code.google.com/p/getpaid/source/detail?r=3299

Original comment by dataku...@gmail.com on 21 Jan 2010 at 9:42