Skip to content
This repository has been archived by the owner on Dec 17, 2020. It is now read-only.

Commit

Permalink
Get ready for the 1.3.0 release. We can now also do coverage.
Browse files Browse the repository at this point in the history
  • Loading branch information
strichter committed Jul 18, 2007
1 parent b1ca043 commit cbf5f12
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
CHANGES
=======

Version 1.3.0 (??/??/2007)
Version 1.3.0 (7/18/2007)
-------------------------

- Feature: Created functional tests for the demos.
Expand Down
6 changes: 5 additions & 1 deletion buildout.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
[buildout]
develop = .
parts = demo test
parts = demo test coverage

[test]
recipe = zc.recipe.testrunner
eggs = z3c.formdemo [app, test]

[coverage]
recipe = zc.recipe.egg
eggs = z3c.coverage

[zope3]
location = .

Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def read(*rnames):

setup (
name='z3c.formdemo',
version='1.3.0b1',
version='1.3.0',
author = "Stephan Richter, Roger Ineichen and the Zope Community",
author_email = "zope3-dev@zope.org",
description = "A set of demo applications for z3c.form and z3c.formui",
Expand All @@ -35,7 +35,7 @@ def read(*rnames):
license = "ZPL 2.1",
keywords = "zope3 form widget",
classifiers = [
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Zope Public License',
Expand Down Expand Up @@ -64,7 +64,8 @@ def read(*rnames):
'zope.app.wsgi',
'zope.contentprovider',
],
test = ['z3c.etestbrowser',
test = ['z3c.coverage',
'z3c.etestbrowser',
'zope.app.testing'],
),
install_requires = [
Expand Down

0 comments on commit cbf5f12

Please sign in to comment.