File tree Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Expand file tree Collapse file tree 4 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ environment:
32
32
PYTHON_DEF : " C:\\ Python38-x64"
33
33
PYTHON_VERSION : " 3.8"
34
34
# Python versions to build wheels for
35
- PYTHONVERS : C:\Python36-x64 C:\ Python37-x64 C:\Python38-x64 C:\Python39-x64 C:\Python310-x64 C:\Python311-x64
35
+ PYTHONVERS : C:\Python37-x64 C:\Python38-x64 C:\Python39-x64 C:\Python310-x64 C:\Python311-x64
36
36
PYTHON_ARCH : " 64"
37
37
38
38
install :
Original file line number Diff line number Diff line change @@ -141,8 +141,7 @@ workflows:
141
141
matrix :
142
142
parameters :
143
143
python_ver :
144
- - " 3.6"
145
- - " 3.8"
144
+ - " 3.7"
146
145
- " 3.9"
147
146
- " 3.11"
148
147
filters :
Original file line number Diff line number Diff line change 17
17
18
18
# Compile wheels
19
19
rm -rf /io/build
20
- # For testing
21
- # for PYBIN in $(ls -1d /opt/python/cp310-cp310/bin | grep -v cpython); do
22
- for PYBIN in $( ls -1d /opt/python/* /bin | grep -v cpython) ; do
20
+
21
+ PYVERS=$( ls -1d /opt/python/* /bin | grep -v cpython | grep -v cp36- | sort -V)
22
+ # For testing:
23
+ # PYVERS=/opt/python/cp311-cp311/bin
24
+
25
+ for PYBIN in $PYVERS ; do
23
26
" ${PYBIN} /pip" wheel /io/ -w wheelhouse/
24
27
done
25
28
@@ -29,8 +32,7 @@ for whl in wheelhouse/*.whl; do
29
32
done
30
33
31
34
# Install packages and test
32
- # for PYBIN in $(ls -1d /opt/python/cp310-cp310/bin | grep -v cpython); do
33
- for PYBIN in $( ls -1d /opt/python/* /bin | grep -v cpython) ; do
35
+ for PYBIN in $PYVERS ; do
34
36
" ${PYBIN} /pip" install ssh-python --no-index -f /io/wheelhouse
35
37
(cd " $HOME " ; " ${PYBIN} /python" -c ' from ssh.session import Session; Session()' )
36
38
done
Original file line number Diff line number Diff line change 125
125
'Programming Language :: C' ,
126
126
'Programming Language :: Python' ,
127
127
'Programming Language :: Python :: 3' ,
128
- 'Programming Language :: Python :: 3.6' ,
129
128
'Programming Language :: Python :: 3.7' ,
130
129
'Programming Language :: Python :: 3.8' ,
131
130
'Programming Language :: Python :: 3.9' ,
132
131
'Programming Language :: Python :: 3.10' ,
132
+ 'Programming Language :: Python :: 3.11' ,
133
133
'Topic :: System :: Shells' ,
134
134
'Topic :: System :: Networking' ,
135
135
'Topic :: Software Development :: Libraries' ,
You can’t perform that action at this time.
0 commit comments