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:
3232 PYTHON_DEF : " C:\\ Python38-x64"
3333 PYTHON_VERSION : " 3.8"
3434 # 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
3636 PYTHON_ARCH : " 64"
3737
3838install :
Original file line number Diff line number Diff line change @@ -141,8 +141,7 @@ workflows:
141141 matrix :
142142 parameters :
143143 python_ver :
144- - " 3.6"
145- - " 3.8"
144+ - " 3.7"
146145 - " 3.9"
147146 - " 3.11"
148147 filters :
Original file line number Diff line number Diff line change 1717
1818# Compile wheels
1919rm -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
2326 " ${PYBIN} /pip" wheel /io/ -w wheelhouse/
2427done
2528
@@ -29,8 +32,7 @@ for whl in wheelhouse/*.whl; do
2932done
3033
3134# 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
3436 " ${PYBIN} /pip" install ssh-python --no-index -f /io/wheelhouse
3537 (cd " $HOME " ; " ${PYBIN} /python" -c ' from ssh.session import Session; Session()' )
3638done
Original file line number Diff line number Diff line change 125125 'Programming Language :: C' ,
126126 'Programming Language :: Python' ,
127127 'Programming Language :: Python :: 3' ,
128- 'Programming Language :: Python :: 3.6' ,
129128 'Programming Language :: Python :: 3.7' ,
130129 'Programming Language :: Python :: 3.8' ,
131130 'Programming Language :: Python :: 3.9' ,
132131 'Programming Language :: Python :: 3.10' ,
132+ 'Programming Language :: Python :: 3.11' ,
133133 'Topic :: System :: Shells' ,
134134 'Topic :: System :: Networking' ,
135135 'Topic :: Software Development :: Libraries' ,
You can’t perform that action at this time.
0 commit comments