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
f80339f3
Commit
f80339f3
authored
Mar 09, 2018
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop Python 3.3 and add Python 3.7. Fixes #81.
parent
ca8d3909
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
11 deletions
+8
-11
.manylinux-install.sh
.manylinux-install.sh
+1
-3
.travis.yml
.travis.yml
+2
-2
CHANGES.rst
CHANGES.rst
+3
-2
appveyor.yml
appveyor.yml
+0
-2
setup.py
setup.py
+1
-1
tox.ini
tox.ini
+1
-1
No files found.
.manylinux-install.sh
View file @
f80339f3
...
...
@@ -5,13 +5,12 @@ set -e -x
# Compile wheels
for
PYBIN
in
/opt/python/
*
/bin
;
do
if
[[
"
${
PYBIN
}
"
==
*
"cp27"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp33"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp34"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp35"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp36"
*
]]
;
then
"
${
PYBIN
}
/pip"
install
-e
/io/
"
${
PYBIN
}
/pip"
wheel /io/
-w
wheelhouse/
rm
-rf
/io/build /io/
*
.egg-info
rm
-rf
/io/build /io/
*
.egg-info
fi
done
...
...
@@ -19,4 +18,3 @@ done
for
whl
in
wheelhouse/BTrees
*
.whl
;
do
auditwheel repair
"
$whl
"
-w
/io/wheelhouse/
done
.travis.yml
View file @
f80339f3
...
...
@@ -7,14 +7,14 @@ matrix:
-
os
:
linux
python
:
2.7
env
:
PURE_PYTHON=1
-
os
:
linux
python
:
3.3
-
os
:
linux
python
:
3.4
-
os
:
linux
python
:
3.5
-
os
:
linux
python
:
3.6
-
os
:
linux
python
:
3.7-dev
-
os
:
linux
python
:
3.6
env
:
PURE_PYTHON=1
...
...
CHANGES.rst
View file @
f80339f3
``BTrees`` Changelog
====================
4.
4.2
(unreleased)
4.
5.0
(unreleased)
------------------
- Add support for Python 3.6.
- Add support for Python 3.6 and 3.7.
- Drop support for Python 3.3.
- Raise an ``ImportError`` consistently on Python 3 if the C extension for
BTrees is used but the ``persistent`` C extension is not available.
Previously this could result in an odd ``AttributeError``. See
...
...
appveyor.yml
View file @
f80339f3
...
...
@@ -7,8 +7,6 @@ environment:
matrix
:
-
python
:
27
-
python
:
27-x64
-
python
:
33
-
python
:
33-x64
-
python
:
34
-
python
:
34-x64
-
python
:
35
...
...
setup.py
View file @
f80339f3
...
...
@@ -153,10 +153,10 @@ setup(name='BTrees',
'Programming Language :: Python :: 2'
,
'Programming Language :: Python :: 2.7'
,
'Programming Language :: Python :: 3'
,
'Programming Language :: Python :: 3.3'
,
'Programming Language :: Python :: 3.4'
,
'Programming Language :: Python :: 3.5'
,
'Programming Language :: Python :: 3.6'
,
'Programming Language :: Python :: 3.7'
,
"Programming Language :: Python :: Implementation :: CPython"
,
"Programming Language :: Python :: Implementation :: PyPy"
,
"Framework :: ZODB"
,
...
...
tox.ini
View file @
f80339f3
...
...
@@ -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,py3
3,py34,py35,py35-pure,py36
,pypy3,w_zodb,coverage,docs
py27,py27-pure,pypy,py3
4,py35,py35-pure,py36,py37
,pypy3,w_zodb,coverage,docs
[testenv]
usedevelop
=
true
...
...
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