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
7e205796
Commit
7e205796
authored
Jul 26, 2019
by
Marius Gedminas
Committed by
GitHub
Jul 26, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #107 from zopefoundation/drop-py34
Drop Python 3.4 support
parents
5fe609f6
0726b8da
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13 additions
and
21 deletions
+13
-21
.gitignore
.gitignore
+1
-0
.manylinux-install.sh
.manylinux-install.sh
+0
-1
.travis.yml
.travis.yml
+1
-8
CHANGES.rst
CHANGES.rst
+3
-1
appveyor.yml
appveyor.yml
+0
-2
setup.py
setup.py
+7
-8
tox.ini
tox.ini
+1
-1
No files found.
.gitignore
View file @
7e205796
...
...
@@ -17,3 +17,4 @@ coverage.xml
dist
.eggs/
.dir-locals.el
pip-wheel-metadata/
.manylinux-install.sh
View file @
7e205796
...
...
@@ -5,7 +5,6 @@ set -e -x
# Compile wheels
for
PYBIN
in
/opt/python/
*
/bin
;
do
if
[[
"
${
PYBIN
}
"
==
*
"cp27"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp34"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp35"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp36"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp37"
*
]]
;
then
...
...
.travis.yml
View file @
7e205796
language
:
python
sudo
:
false
dist
:
xenial
matrix
:
include
:
-
os
:
linux
...
...
@@ -7,8 +7,6 @@ matrix:
-
os
:
linux
python
:
2.7
env
:
PURE_PYTHON=1
-
os
:
linux
python
:
3.4
-
os
:
linux
python
:
3.5
-
os
:
linux
...
...
@@ -21,8 +19,6 @@ matrix:
-
WITH_COVERAGE=1
-
os
:
linux
python
:
3.7
dist
:
xenial
sudo
:
true
-
os
:
linux
python
:
pypy
-
os
:
linux
...
...
@@ -33,9 +29,6 @@ matrix:
-
os
:
osx
language
:
generic
env
:
TERRYFY_PYTHON='macpython 2.7'
-
os
:
osx
language
:
generic
env
:
TERRYFY_PYTHON='macpython 3.4'
-
os
:
osx
language
:
generic
env
:
TERRYFY_PYTHON='macpython 3.5'
...
...
CHANGES.rst
View file @
7e205796
``BTrees`` Changelog
====================
4.
5.2
(unreleased)
4.
6.0
(unreleased)
------------------
- Drop support for Python 3.4.
- Fix tests against persistent 4.4.
- Stop accidentally installing the 'terryfy' package in macOS wheels.
...
...
appveyor.yml
View file @
7e205796
...
...
@@ -7,8 +7,6 @@ environment:
matrix
:
-
python
:
27
-
python
:
27-x64
-
python
:
34
-
python
:
34-x64
-
python
:
35
-
python
:
35-x64
-
python
:
36
...
...
setup.py
View file @
7e205796
...
...
@@ -12,7 +12,7 @@
#
##############################################################################
from
__future__
import
print_function
version
=
'4.
5.2
.dev0'
version
=
'4.
6.0
.dev0'
import
os
import
sys
...
...
@@ -153,13 +153,12 @@ setup(name='BTrees',
"Development Status :: 6 - Mature"
,
"License :: OSI Approved :: Zope Public License"
,
"Programming Language :: Python"
,
'Programming Language :: Python :: 2'
,
'Programming Language :: Python :: 2.7'
,
'Programming Language :: Python :: 3'
,
'Programming Language :: Python :: 3.4'
,
'Programming Language :: Python :: 3.5'
,
'Programming Language :: Python :: 3.6'
,
'Programming Language :: Python :: 3.7'
,
"Programming Language :: Python :: 2"
,
"Programming Language :: Python :: 2.7"
,
"Programming Language :: Python :: 3"
,
"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 @
7e205796
...
...
@@ -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,py
py,py34,py35,py35-pure,py36,py37
,pypy3,w_zodb,coverage,docs
py27,py27-pure,py
35,py35-pure,py36,py37,pypy
,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