Skip to content

Commit

Permalink
Clean up no longer needed dependencies and use released final versions..
Browse files Browse the repository at this point in the history
  • Loading branch information
sallner committed Aug 8, 2016
1 parent 3850468 commit 5a31feb
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 16 deletions.
8 changes: 0 additions & 8 deletions buildout.cfg
@@ -1,9 +1,6 @@
[buildout]
develop = .
parts = test console-scripts
versions=versions
find-links =
${buildout:directory}/zope.app.publication-4.0.0a1.dev0.tar.gz

[test]
recipe = zc.recipe.testrunner
Expand All @@ -15,8 +12,3 @@ eggs =
importchecker
pep8
createcoverage

[versions]
transaction =1.5.0
zope.app.publication = 4.0.0a1.dev0
Webtest =
9 changes: 5 additions & 4 deletions setup.py
Expand Up @@ -3,21 +3,22 @@


def read(*path_elements):
return "\n\n" + open(os.path.join(*path_elements), 'rt').read()
with open(os.path.join(*path_elements), 'rt') as f:
return "\n\n" + f.read()

TEST_REQUIREMENTS = [
'zope.publisher',
'zope.component',
'zope.security',
'zope.app.wsgi[testlayer] >= 4.0.0a4',
'zope.app.wsgi[testlayer] >= 4.0',
'Webtest',
]

setup(
name="z3c.flashmessage",
version='1.4dev',
author="Jasper Op de Coul, Christian Theune",
author_email="jasper@infrae.com, ct@gocept.com",
author_email="jasper@infrae.com, mail@gocept.com",
description="A package for sending `flash messages` to users.",
long_description=(
'.. contents::\n\n' +
Expand Down Expand Up @@ -49,7 +50,7 @@ def read(*path_elements):
namespace_packages=['z3c'],
install_requires=[
'setuptools',
'ZODB3',
'ZODB',
'zope.interface',
'zope.schema',
'zope.session'
Expand Down
5 changes: 1 addition & 4 deletions tox.ini
Expand Up @@ -7,11 +7,8 @@ commands =
setenv =
COVERAGE_FILE=.coverage.{envname}
deps =
{toxinidir}/zope.app.publication-4.0.0a1.dev0.tar.gz
coverage
zope.testrunner
; ZEO pin to get compatibility for Python 3.3
ZEO <5.0
.[test]

[testenv:coverage-clean]
deps = coverage
Expand Down
Binary file removed zope.app.publication-4.0.0a1.dev0.tar.gz
Binary file not shown.

0 comments on commit 5a31feb

Please sign in to comment.