Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools_dso
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
setuptools_dso
Commits
080ba306
Commit
080ba306
authored
Oct 18, 2021
by
Michael Davidsaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci: add py3.10
parent
26d73d04
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
.github/workflows/build.yml
.github/workflows/build.yml
+12
-2
No files found.
.github/workflows/build.yml
View file @
080ba306
...
...
@@ -14,7 +14,7 @@ jobs:
fail-fast
:
false
matrix
:
os
:
[
"
ubuntu-latest"
,
"
windows-latest"
,
"
macos-latest"
]
python-version
:
[
2.7
,
3.5
,
3.6
,
3.7
,
3.8
,
3.9
,
3.x
]
python-version
:
[
2.7
,
3.5
,
3.6
,
3.7
,
3.8
,
3.9
,
"
3.10"
,
"
3.x"
]
exclude
:
# missing required (old) Microsoft Visual C++ 9.0
-
os
:
windows-latest
...
...
@@ -75,8 +75,17 @@ jobs:
matrix
:
manylinux
:
[
"
manylinux1"
,
"
manylinux2010"
,
"
manylinux2014"
]
piparch
:
[
"
i686"
,
"
x86_64"
]
pyver
:
[
"
cp27-cp27m"
,
"
cp27-cp27mu"
,
"
cp36-cp36m"
,
"
cp37-cp37m"
,
"
cp38-cp38"
,
"
cp39-cp39"
]
pyver
:
[
"
cp27-cp27m"
,
"
cp27-cp27mu"
,
"
cp36-cp36m"
,
"
cp37-cp37m"
,
"
cp38-cp38"
,
"
cp39-cp39"
,
"
cp310-cp310"
]
exclude
:
# manylinux1 doesn't include py >= 3.10
-
manylinux
:
"
manylinux1"
piparch
:
"
i686"
pyver
:
"
cp310-cp310"
-
manylinux
:
"
manylinux1"
piparch
:
"
x86_64"
pyver
:
"
cp310-cp310"
# manylinux2010 and above don't provide 2.7 in images
-
manylinux
:
"
manylinux2010"
piparch
:
"
i686"
...
...
@@ -117,6 +126,7 @@ jobs:
cat <<EOF > runit.sh
#!/bin/sh
set -e -x
ls /opt/python/*/bin/python
cd /io
export PATH="/opt/python/${{ matrix.pyver }}/bin:\$PATH"
which python
...
...
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