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
b5f6b710
Commit
b5f6b710
authored
Aug 09, 2018
by
Forest Gregg
Committed by
GitHub
Aug 09, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #92 from zopefoundation/py37_build
python 3.7 binary wheels.
parents
c8bf24e1
c97b7c2e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
9 deletions
+17
-9
.manylinux-install.sh
.manylinux-install.sh
+2
-1
.travis.yml
.travis.yml
+7
-8
MANIFEST.in
MANIFEST.in
+2
-0
appveyor.yml
appveyor.yml
+2
-0
pyproject.toml
pyproject.toml
+4
-0
No files found.
.manylinux-install.sh
View file @
b5f6b710
...
@@ -7,7 +7,8 @@ for PYBIN in /opt/python/*/bin; do
...
@@ -7,7 +7,8 @@ for PYBIN in /opt/python/*/bin; do
if
[[
"
${
PYBIN
}
"
==
*
"cp27"
*
]]
||
\
if
[[
"
${
PYBIN
}
"
==
*
"cp27"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp34"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp34"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp35"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp35"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp36"
*
]]
;
then
[[
"
${
PYBIN
}
"
==
*
"cp36"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp37"
*
]]
;
then
"
${
PYBIN
}
/pip"
install
-e
/io/
"
${
PYBIN
}
/pip"
install
-e
/io/
"
${
PYBIN
}
/pip"
wheel /io/
-w
wheelhouse/
"
${
PYBIN
}
/pip"
wheel /io/
-w
wheelhouse/
rm
-rf
/io/build /io/
*
.egg-info
rm
-rf
/io/build /io/
*
.egg-info
...
...
.travis.yml
View file @
b5f6b710
...
@@ -20,7 +20,9 @@ matrix:
...
@@ -20,7 +20,9 @@ matrix:
-
PURE_PYTHON=1
-
PURE_PYTHON=1
-
WITH_COVERAGE=1
-
WITH_COVERAGE=1
-
os
:
linux
-
os
:
linux
python
:
3.7-dev
python
:
3.7
dist
:
xenial
sudo
:
true
-
os
:
linux
-
os
:
linux
python
:
pypy
python
:
pypy
-
os
:
linux
-
os
:
linux
...
@@ -39,7 +41,10 @@ matrix:
...
@@ -39,7 +41,10 @@ matrix:
env
:
TERRYFY_PYTHON='macpython 3.5'
env
:
TERRYFY_PYTHON='macpython 3.5'
-
os
:
osx
-
os
:
osx
language
:
generic
language
:
generic
env
:
TERRYFY_PYTHON='macpython 3.6.0'
env
:
TERRYFY_PYTHON='macpython 3.6.1'
-
os
:
osx
language
:
generic
env
:
TERRYFY_PYTHON='macpython 3.7.0'
-
services
:
-
services
:
-
docker
-
docker
env
:
DOCKER_IMAGE=quay.io/pypa/manylinux1_x86_64
env
:
DOCKER_IMAGE=quay.io/pypa/manylinux1_x86_64
...
@@ -61,12 +66,6 @@ before_install:
...
@@ -61,12 +66,6 @@ before_install:
-
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then get_python_environment $TERRYFY_PYTHON venv; fi
-
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then get_python_environment $TERRYFY_PYTHON venv; fi
install
:
install
:
-
pip install -U pip setuptools
-
pip install -U pip setuptools
# persistent is a setup_requires, which gets downloaded by
# setuptools, not pip. But macpython 3.6.0 setuptools has trouble with SSL on
# Travis CI
# (https://travis-ci.org/zopefoundation/BTrees/jobs/192340692) so
# we install with pip manually.
-
pip install -U persistent
-
if [[ "$WITH_COVERAGE" == "1" ]]; then pip install coveralls coverage; fi
-
if [[ "$WITH_COVERAGE" == "1" ]]; then pip install coveralls coverage; fi
-
pip install -e .[test,ZODB]
-
pip install -e .[test,ZODB]
script
:
script
:
...
...
MANIFEST.in
View file @
b5f6b710
include pyproject.toml
include *.txt
include *.txt
include *.rst
include *.rst
include *.py
include *.py
...
...
appveyor.yml
View file @
b5f6b710
...
@@ -13,6 +13,8 @@ environment:
...
@@ -13,6 +13,8 @@ environment:
-
python
:
35-x64
-
python
:
35-x64
-
python
:
36
-
python
:
36
-
python
:
36-x64
-
python
:
36-x64
-
python
:
37
-
python
:
37-x64
install
:
install
:
-
"
SET
PATH=C:
\\
Python%PYTHON%;c:
\\
Python%PYTHON%
\\
scripts;%PATH%"
-
"
SET
PATH=C:
\\
Python%PYTHON%;c:
\\
Python%PYTHON%
\\
scripts;%PATH%"
...
...
pyproject.toml
0 → 100644
View file @
b5f6b710
[build-system]
requires
=
[
"setuptools"
,
"wheel"
,
"persistent"
]
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