Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Acquisition
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Acquisition
Commits
70e05fad
Commit
70e05fad
authored
Apr 15, 2009
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prepare release
parent
683054c1
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
2 deletions
+17
-2
CHANGES.txt
CHANGES.txt
+14
-0
setup.py
setup.py
+3
-2
No files found.
CHANGES.txt
0 → 100644
View file @
70e05fad
Changelog
=========
2.12.1 - 2009-04-15
-------------------
- Update for iteration proxying: The proxy for `__iter__` must not rely on the
object to have an `__iter__` itself, but also support fall-back iteration via
`__getitem__` (this fixes https://bugs.launchpad.net/zope2/+bug/360761).
2.12 - 2009-01-25
-----------------
- Release as separate package.
setup.py
View file @
70e05fad
...
...
@@ -17,7 +17,7 @@ import os
from
setuptools
import
setup
,
find_packages
,
Extension
setup
(
name
=
'Acquisition'
,
version
=
'2.12.
0dev
'
,
version
=
'2.12.
1
'
,
url
=
'http://pypi.python.org/pypi/Acquisition'
,
license
=
'ZPL 2.1'
,
description
=
"Acquisition is a mechanism that allows objects to obtain "
...
...
@@ -25,7 +25,8 @@ setup(name='Acquisition',
author
=
'Zope Corporation and Contributors'
,
author_email
=
'zope-dev@zope.org'
,
long_description
=
open
(
os
.
path
.
join
(
'src'
,
'Acquisition'
,
'README.txt'
)).
read
(),
os
.
path
.
join
(
'src'
,
'Acquisition'
,
'README.txt'
)).
read
()
+
'
\
n
'
+
open
(
'CHANGES.txt'
).
read
(),
packages
=
find_packages
(
'src'
),
package_dir
=
{
''
:
'src'
},
...
...
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