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
6e432caa
Commit
6e432caa
authored
Nov 01, 2019
by
Marius Gedminas
Committed by
GitHub
Nov 01, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #118 from zopefoundation/py38-wheels
Enable Python 3.8 on Appveyer and also for manylinux builds
parents
1cc84df8
8a56e0e6
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
.manylinux-install.sh
.manylinux-install.sh
+2
-1
appveyor.yml
appveyor.yml
+10
-0
No files found.
.manylinux-install.sh
View file @
6e432caa
...
...
@@ -7,7 +7,8 @@ for PYBIN in /opt/python/*/bin; do
if
[[
"
${
PYBIN
}
"
==
*
"cp27"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp35"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp36"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp37"
*
]]
;
then
[[
"
${
PYBIN
}
"
==
*
"cp37"
*
]]
||
\
[[
"
${
PYBIN
}
"
==
*
"cp38"
*
]]
;
then
"
${
PYBIN
}
/pip"
install
-U
pip setuptools wheel cffi
"
${
PYBIN
}
/pip"
install
-e
/io/
"
${
PYBIN
}
/pip"
wheel /io/
-w
wheelhouse/
...
...
appveyor.yml
View file @
6e432caa
...
...
@@ -13,8 +13,18 @@ environment:
-
python
:
36-x64
-
python
:
37
-
python
:
37-x64
-
python
:
38
-
python
:
38-x64
install
:
-
"
SET
PATH=C:
\\
Python%PYTHON%;c:
\\
Python%PYTHON%
\\
scripts;%PATH%"
-
ps
:
|
$env:PYTHON = "C:\\Python${env:PYTHON}"
if (-not (Test-Path $env:PYTHON)) {
curl -o install_python.ps1 https://raw.githubusercontent.com/matthew-brett/multibuild/11a389d78892cf90addac8f69433d5e22bfa422a/install_python.ps1
.\install_python.ps1
}
-
ps
:
if (-not (Test-Path $env:PYTHON)) { throw "No $env:PYTHON" }
-
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"
-
python -m pip install -U pip setuptools wheel cffi
-
pip install -e .[test]
...
...
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