Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
BTrees
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
BTrees
Commits
b6694af8
Commit
b6694af8
authored
Jan 12, 2017
by
Marius Gedminas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for Python 3.6
parent
98a435e4
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
18 additions
and
8 deletions
+18
-8
.travis.yml
.travis.yml
+2
-0
CHANGES.rst
CHANGES.rst
+5
-0
appveyor.yml
appveyor.yml
+2
-0
setup.py
setup.py
+8
-7
tox.ini
tox.ini
+1
-1
No files found.
.travis.yml
View file @
b6694af8
...
...
@@ -10,6 +10,8 @@ matrix:
python
:
3.4
-
os
:
linux
python
:
3.5
-
os
:
linux
python
:
3.6
-
os
:
linux
python
:
pypy
-
os
:
linux
...
...
CHANGES.rst
View file @
b6694af8
``BTrees`` Changelog
====================
4.4.1 (unreleased)
------------------
- Add support for Python 3.6.
4.4.0 (2017-01-11)
------------------
...
...
appveyor.yml
View file @
b6694af8
...
...
@@ -13,6 +13,8 @@ environment:
-
python
:
34-x64
-
python
:
35
-
python
:
35-x64
-
python
:
36
-
python
:
36-x64
install
:
-
"
SET
PATH=C:
\\
Python%PYTHON%;c:
\\
Python%PYTHON%
\\
scripts;%PATH%"
...
...
setup.py
View file @
b6694af8
...
...
@@ -12,8 +12,6 @@
#
##############################################################################
__version__
=
'4.4.0'
import
os
import
platform
import
sys
...
...
@@ -22,6 +20,8 @@ from setuptools import Extension
from
setuptools
import
find_packages
from
setuptools
import
setup
__version__
=
'4.4.1.dev0'
here
=
os
.
path
.
abspath
(
os
.
path
.
dirname
(
__file__
))
README
=
(
open
(
os
.
path
.
join
(
here
,
'README.rst'
)).
read
()
+
'
\
n
\
n
'
+
...
...
@@ -65,7 +65,7 @@ base_btrees_depends = [
]
FLAVORS
=
{
"O"
:
"object"
,
"I"
:
"int"
,
"F"
:
"float"
,
'L'
:
'int'
}
#XXX should 'fs' be in ZODB instead?
#
XXX should 'fs' be in ZODB instead?
FAMILIES
=
(
"OO"
,
"IO"
,
"OI"
,
"II"
,
"IF"
,
"fs"
,
"LO"
,
"OL"
,
"LL"
,
"LF"
)
KEY_H
=
"BTrees/%skeymacros.h"
...
...
@@ -127,6 +127,7 @@ setup(name='BTrees',
'Programming Language :: Python :: 3.3'
,
'Programming Language :: Python :: 3.4'
,
'Programming Language :: Python :: 3.5'
,
'Programming Language :: Python :: 3.6'
,
"Programming Language :: Python :: Implementation :: CPython"
,
"Programming Language :: Python :: Implementation :: PyPy"
,
"Framework :: ZODB"
,
...
...
@@ -143,9 +144,9 @@ setup(name='BTrees',
packages
=
find_packages
(),
include_package_data
=
True
,
zip_safe
=
False
,
ext_modules
=
ext_modules
,
ext_modules
=
ext_modules
,
setup_requires
=
[
'persistent'
],
extras_require
=
{
extras_require
=
{
'test'
:
TESTS_REQUIRE
,
'ZODB'
:
[
'ZODB'
],
'testing'
:
TESTS_REQUIRE
+
[
'nose'
,
'coverage'
],
...
...
@@ -154,6 +155,6 @@ setup(name='BTrees',
test_suite
=
"BTrees.tests"
,
tests_require
=
TESTS_REQUIRE
,
install_requires
=
REQUIRES
,
entry_points
=
"""
\
entry_points
=
"""
\
"""
)
)
tox.ini
View file @
b6694af8
...
...
@@ -3,7 +3,7 @@ envlist =
# 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
# py27,jython,pypy,coverage,docs
py27,py27-pure,pypy,py33,py34,py35,py35-pure,pypy3,w_zodb,coverage,docs
py27,py27-pure,pypy,py33,py34,py35,py35-pure,py
36,py
py3,w_zodb,coverage,docs
[testenv]
deps
=
...
...
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