Commit a3651dc8 authored by Tres Seaver's avatar Tres Seaver

Add support for Python 3.4, PyPy, and PyPy3.

parent 86e5b1de
...@@ -5,9 +5,11 @@ python: ...@@ -5,9 +5,11 @@ python:
- 2.7 - 2.7
- 3.2 - 3.2
- 3.3 - 3.3
- 3.4
- pypy - pypy
- pypy3
install: install:
- pip install . --use-mirrors - pip install .
script: script:
- python setup.py test -q - python setup.py test -q
notifications: notifications:
......
``BTrees`` Changelog ``BTrees`` Changelog
==================== ====================
- BTree subclasses can define max_leaf_size or max_internal_size to 4.0.9 (unreleased)
control maximum sizes for Bucket/Set and BTree/TreeSet nodes. ------------------
- Fixed: integer overflow on 32-bit machines wasn't detected correctly - Add support for PyPy and PyPy3.
under Python 3.
- Add support for Python 3.4.
4.0.9 (unreleased) - BTree subclasses can define ``max_leaf_size`` or ``max_internal_size``
------------------ to control maximum sizes for Bucket/Set and BTree/TreeSet nodes.
- Added support for Python 3.4. - Detect integer overflow on 32-bit machines correctly under Python 3.
- Update pure-Python and C trees / sets to accept explicit None to indicate - Update pure-Python and C trees / sets to accept explicit None to indicate
max / min value for ``minKey``, ``maxKey``. (PR #3) max / min value for ``minKey``, ``maxKey``. (PR #3)
......
...@@ -3,7 +3,7 @@ envlist = ...@@ -3,7 +3,7 @@ envlist =
# Jython support pending 2.7 support, due 2012-07-15 or so. See: # Jython support pending 2.7 support, due 2012-07-15 or so. See:
# http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html # http://fwierzbicki.blogspot.com/2012/03/adconion-to-fund-jython-27.html
# py26,py27,py32,jython,pypy,coverage,docs # py26,py27,py32,jython,pypy,coverage,docs
py26,py27,py27-pure,pypy,py32,py33,py34,w_zodb,coverage,docs py26,py27,py27-pure,pypy,py32,py33,py34,pypy3,w_zodb,coverage,docs
[testenv] [testenv]
deps = deps =
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment