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
681861b9
Commit
681861b9
authored
Jul 31, 2018
by
Jason Madden
Committed by
GitHub
Jul 31, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #74 from zopefoundation/py37
Add support for Python 3.7 and drop 3.3
parents
4947d6ed
aa447658
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
14 additions
and
10 deletions
+14
-10
.manylinux-install.sh
.manylinux-install.sh
+2
-2
.travis.yml
.travis.yml
+7
-2
CHANGES.rst
CHANGES.rst
+1
-1
appveyor.yml
appveyor.yml
+2
-3
setup.py
setup.py
+1
-1
tox.ini
tox.ini
+1
-1
No files found.
.manylinux-install.sh
View file @
681861b9
...
...
@@ -8,7 +8,8 @@ for PYBIN in /opt/python/*/bin; do
[[
"
${
PYBIN
}
"
==
*
"cp33"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp34"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp35"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp36"
*
]]
;
then
[[
"
${
PYBIN
}
"
==
*
"cp36"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp37"
*
]]
;
then
"
${
PYBIN
}
/pip"
install
-e
/io/
"
${
PYBIN
}
/pip"
wheel /io/
-w
wheelhouse/
rm
-rf
/io/build /io/
*
.egg-info
...
...
@@ -19,4 +20,3 @@ done
for
whl
in
wheelhouse/persistent
*
.whl
;
do
auditwheel repair
"
$whl
"
-w
/io/wheelhouse/
done
.travis.yml
View file @
681861b9
...
...
@@ -4,8 +4,6 @@ matrix:
include
:
-
os
:
linux
python
:
2.7
-
os
:
linux
python
:
3.3
-
os
:
linux
python
:
3.4
-
os
:
linux
...
...
@@ -16,6 +14,10 @@ matrix:
python
:
pypy
-
os
:
linux
python
:
pypy3
-
os
:
linux
dist
:
xenial
sudo
:
true
python
:
3.7
# It's important to use 'macpython' builds to get the least
# restrictive wheel tag. It's also important to avoid
# 'homebrew 3' because it floats instead of being a specific version.
...
...
@@ -31,6 +33,9 @@ matrix:
-
os
:
osx
language
:
generic
env
:
TERRYFY_PYTHON='macpython 3.6.0'
-
os
:
osx
language
:
generic
env
:
TERRYFY_PYTHON='macpython 3.7.0'
-
services
:
-
docker
env
:
DOCKER_IMAGE=quay.io/pypa/manylinux1_x86_64
...
...
CHANGES.rst
View file @
681861b9
...
...
@@ -4,7 +4,7 @@
4.3.1 (unreleased)
------------------
-
Nothing changed yet
.
-
Add support for Python 3.7 and drop support for Python 3.3
.
4.3.0 (2018-07-30)
...
...
appveyor.yml
View file @
681861b9
...
...
@@ -7,15 +7,14 @@ environment:
matrix
:
-
python
:
27
-
python
:
27-x64
-
python
:
33
-
python
:
33-x64
-
python
:
34
-
python
:
34-x64
-
python
:
35
-
python
:
35-x64
-
python
:
36
-
python
:
36-x64
-
python
:
37
-
python
:
37-x64
install
:
-
"
SET
PATH=C:
\\
Python%PYTHON%;c:
\\
Python%PYTHON%
\\
scripts;%PATH%"
-
echo "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 > "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\amd64\vcvars64.bat"
...
...
setup.py
View file @
681861b9
...
...
@@ -91,10 +91,10 @@ setup(name='persistent',
'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 @
681861b9
...
...
@@ -3,7 +3,7 @@ envlist =
# Jython 2.7rc2 does work, but unfortunately has an issue running
# with Tox 1.9.2 (http://bugs.jython.org/issue2325)
# py27,py27-pure,pypy,py33,py34,pypy3,jython,coverage,docs
py27,py27-pure,py27-pure-cffi,pypy,py3
3,py34,py35,py36
,pypy3,coverage,docs
py27,py27-pure,py27-pure-cffi,pypy,py3
4,py35,py36,py37
,pypy3,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