Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZODB
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
ZODB
Commits
db98fdf4
Commit
db98fdf4
authored
Jul 24, 2017
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop support for Python 3.3
parent
d7b5f03c
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
8 deletions
+11
-8
.travis.yml
.travis.yml
+1
-3
CHANGES.rst
CHANGES.rst
+4
-2
setup.cfg
setup.cfg
+2
-0
setup.py
setup.py
+3
-2
tox.ini
tox.ini
+1
-1
No files found.
.travis.yml
View file @
db98fdf4
...
...
@@ -9,8 +9,6 @@ matrix:
env
:
BUILOUT_OPTIONS=sphinx:eggs=
-
os
:
linux
python
:
2.7
-
os
:
linux
python
:
3.3
-
os
:
linux
python
:
3.4
-
os
:
linux
...
...
@@ -20,7 +18,7 @@ matrix:
install
:
-
pip install -U pip
-
pip install zc.buildout
-
buildout $BUILOUT_OPTIONS
versions:sphinx=1.4.9
-
buildout $BUILOUT_OPTIONS
script
:
-
if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then bin/coverage run bin/coverage-test -v1j99; fi
-
if [[ $TRAVIS_PYTHON_VERSION == pypy* ]]; then bin/test -v1j99; fi
...
...
CHANGES.rst
View file @
db98fdf4
...
...
@@ -2,10 +2,12 @@
Change History
================
5.
2.5
(unreleased)
5.
3.0
(unreleased)
==================
- Nothing changed yet.
- Add support for Python 3.6.
- Drop support for Python 3.3.
5.2.4 (2017-05-17)
...
...
setup.cfg
0 → 100644
View file @
db98fdf4
[bdist_wheel]
universal = 1
setup.py
View file @
db98fdf4
...
...
@@ -14,7 +14,7 @@
import
os
from
setuptools
import
setup
,
find_packages
version
=
'5.
2.5
.dev0'
version
=
'5.
3.0
.dev0'
classifiers
=
"""
\
Intended Audience :: Developers
...
...
@@ -23,7 +23,6 @@ Programming Language :: Python
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
...
...
@@ -145,5 +144,7 @@ setup(
repozo = ZODB.scripts.repozo:main
"""
,
include_package_data
=
True
,
# The pypy3 we test with on travis CI is still a Python 3.3
# implementation, so we don't explicitly blacklist 3.3 yet.
python_requires
=
'>=2.7,!=3.0.*,!=3.1.*,!=3.2.*'
,
)
tox.ini
View file @
db98fdf4
...
...
@@ -2,7 +2,7 @@
# Jython 2.7rc2 does work, but unfortunately has an issue running
# with Tox 1.9.2 (http://bugs.jython.org/issue2325)
#envlist = py26,py27,py33,py34,pypy,simple,jython,pypy3
envlist
=
py27,py3
3,py3
4,py35,py36,pypy,simple,pypy3
envlist
=
py27,py34,py35,py36,pypy,simple,pypy3
[testenv]
# ZODB.tests.testdocumentation needs to find
...
...
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