Skip to content

Commit

Permalink
Update version pins.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed May 22, 2015
1 parent 48c336d commit 8f95e19
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion buildout.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ parts =
versions = versions

[versions]
zdaemon = 4.0.0a1
zdaemon = 4.1.0

[test]
recipe = zc.recipe.testrunner
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@ def emit(self, record):
tests_require = tests_require,
extras_require = dict(test=tests_require),
install_requires = [
'ZODB >= 4.0.0b2',
'ZODB >= 4.2.0b1',
'six',
'transaction',
'persistent',
'persistent >= 4.1.0',
'zc.lockfile',
'ZConfig',
'zdaemon',
Expand Down

2 comments on commit 8f95e19

@tseaver
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We need to bump pins in tox.ini, too.

@mgedmin
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IIRC the original reason for pinning 4.0.0a1 here and elsewhere was to get a version that supports Python 3 (buildout defaults to final releases only, so it'd get something like 3.x.y). IIRC we didn't know about the zdaemon = >= 4.0.0a1 syntax back then.

I think the exact pin should be removed altogether.

Please sign in to comment.