[Checkins] SVN: Zope/branches/2.13/ backport r127985 onto the 2.13 branch

Hanno Schlichting hanno at hannosch.eu
Sat Oct 13 22:30:46 UTC 2012


Wait! tempstorage is used inside Products.TemporaryFolder in normal
non-test code. So it's a normal real dependency here.

On Sat, Oct 13, 2012 at 9:45 PM, Andreas Zeidler <cvs-admin at zope.org> wrote:
> Log message for revision 127986:
>   backport r127985 onto the 2.13 branch
>
>
> Changed:
>   U   Zope/branches/2.13/buildout.cfg
>   U   Zope/branches/2.13/setup.py
>
> -=-
> Modified: Zope/branches/2.13/buildout.cfg
> ===================================================================
> --- Zope/branches/2.13/buildout.cfg     2012-10-13 19:37:42 UTC (rev 127985)
> +++ Zope/branches/2.13/buildout.cfg     2012-10-13 19:45:24 UTC (rev 127986)
> @@ -30,7 +30,7 @@
>      import sys
>      import warnings
>      if sys.version_info >= (2, 7): warnings.simplefilter('default')
> -eggs = Zope2
> +eggs = Zope2 [test]
>
>
>  [scripts]
>
> Modified: Zope/branches/2.13/setup.py
> ===================================================================
> --- Zope/branches/2.13/setup.py 2012-10-13 19:37:42 UTC (rev 127985)
> +++ Zope/branches/2.13/setup.py 2012-10-13 19:45:24 UTC (rev 127986)
> @@ -65,7 +65,6 @@
>        'initgroups',
>        'pytz',
>        'setuptools',
> -      'tempstorage',
>        'transaction',
>        'zdaemon',
>        'zExceptions',
> @@ -113,7 +112,9 @@
>        'Products.PythonScripts',
>        'Products.StandardCacheManagers',
>      ] + additional_install_requires,
> -
> +    extras_require={
> +      'test': ['tempstorage'],
> +    },
>      include_package_data=True,
>      zip_safe=False,
>      entry_points={


More information about the checkins mailing list