Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZODB
Commits
1b1f21dc
Commit
1b1f21dc
authored
Dec 01, 2009
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug fixed:
- zope.testing was an unnecessary non-testing dependency.
parent
393c35ec
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
6 deletions
+5
-6
buildout.cfg
buildout.cfg
+1
-1
setup.py
setup.py
+2
-4
src/CHANGES.txt
src/CHANGES.txt
+2
-1
No files found.
buildout.cfg
View file @
1b1f21dc
...
...
@@ -4,7 +4,7 @@ parts = test scripts
[test]
recipe = zc.recipe.testrunner
eggs = ZODB3
eggs = ZODB3
[test]
initialization =
import os, tempfile
try: os.mkdir('tmp')
...
...
setup.py
View file @
1b1f21dc
...
...
@@ -200,9 +200,8 @@ setup(name="ZODB3",
read_file
(
"README.txt"
)
+
"
\
n
\
n
"
+
read_file
(
"src"
,
"CHANGES.txt"
)),
test_suite
=
"__main__.alltests"
,
# to support "setup.py test"
tests_require
=
[
'zope.testing'
,
],
tests_require
=
[
'zope.testing'
],
extras_require
=
dict
(
test
=
[
'zope.testing'
]),
install_requires
=
[
'transaction'
,
'zc.lockfile'
,
...
...
@@ -211,7 +210,6 @@ setup(name="ZODB3",
'zope.event'
,
'zope.interface'
,
'zope.proxy'
,
'zope.testing'
,
],
zip_safe
=
False
,
entry_points
=
"""
...
...
src/CHANGES.txt
View file @
1b1f21dc
...
...
@@ -9,8 +9,9 @@ Bugs Fixed
----------
- History support was broken when using stprages that work with ZODB
3.8 and 3.9
3.8 and 3.9
.
- zope.testing was an unnecessary non-testing dependency.
3.9.3 (2009-10-23)
==================
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment