Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
persistent
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
persistent
Commits
472b3e98
Commit
472b3e98
authored
Mar 25, 2016
by
Jim Fulton
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #33 from zopefoundation/drop-py26-py32
Drop support for Python 2.6 and 3.2.
parents
8f7440f4
993502e7
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
15 deletions
+11
-15
.travis.yml
.travis.yml
+0
-2
CHANGES.rst
CHANGES.rst
+2
-2
setup.py
setup.py
+1
-3
tox.ini
tox.ini
+8
-8
No files found.
.travis.yml
View file @
472b3e98
language
:
python
sudo
:
false
python
:
-
2.6
-
2.7
-
3.2
-
3.3
-
3.4
-
pypy
...
...
CHANGES.rst
View file @
472b3e98
``persistent`` Changelog
========================
4.
1.2
(unreleased)
4.
2.0
(unreleased)
------------------
-
TBD
-
Drop support for Python 2.6 and 3.2.
4.1.1 (2015-06-02)
------------------
...
...
setup.py
View file @
472b3e98
...
...
@@ -12,7 +12,7 @@
#
##############################################################################
__version__
=
'4.
1.2
.dev0'
__version__
=
'4.
2.0
.dev0'
import
os
import
platform
...
...
@@ -79,10 +79,8 @@ setup(name='persistent',
"License :: OSI Approved :: Zope Public License"
,
"Programming Language :: Python"
,
'Programming Language :: Python :: 2'
,
'Programming Language :: Python :: 2.6'
,
'Programming Language :: Python :: 2.7'
,
'Programming Language :: Python :: 3'
,
'Programming Language :: Python :: 3.2'
,
'Programming Language :: Python :: 3.3'
,
'Programming Language :: Python :: 3.4'
,
"Programming Language :: Python :: Implementation :: CPython"
,
...
...
tox.ini
View file @
472b3e98
...
...
@@ -2,18 +2,18 @@
envlist
=
# Jython 2.7rc2 does work, but unfortunately has an issue running
# with Tox 1.9.2 (http://bugs.jython.org/issue2325)
# py2
6,py27,py27-pure,pypy,py32
,py33,py34,pypy3,jython,coverage,docs
py2
6,py27,py27-pure,py27-pure-cffi,pypy,py32
,py33,py34,pypy3,coverage,docs
# py2
7,py27-pure,pypy
,py33,py34,pypy3,jython,coverage,docs
py2
7,py27-pure,py27-pure-cffi,pypy
,py33,py34,pypy3,coverage,docs
[testenv]
deps
=
zope.interface
commands
=
python
setup.py
test
-q
python
setup.py
-q
test
-q
[testenv:jython]
commands
=
jython
setup.py
test
-q
jython
setup.py
-q
test
-q
[testenv:py27-pure]
basepython
=
...
...
@@ -23,7 +23,7 @@ setenv =
deps
=
{
[testenv]
deps}
commands
=
python
setup.py
test
-q
python
setup.py
-q
test
-q
[testenv:py27-pure-cffi]
basepython
=
...
...
@@ -35,12 +35,12 @@ deps =
{
[testenv]
deps}
cffi
commands
=
python
setup.py
test
-q
python
setup.py
-q
test
-q
[testenv:coverage]
basepython
=
python2.
6
python2.
7
setenv
=
USING_CFFI
=
1
commands
=
...
...
@@ -54,7 +54,7 @@ deps =
[testenv:docs]
basepython
=
python2.
6
python2.
7
commands
=
sphinx-build
-b
html
-d
docs/_build/doctrees
docs
docs/_build/html
sphinx-build
-b
doctest
-d
docs/_build/doctrees
docs
docs/_build/doctest
...
...
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