Skip to content

Commit c3f0d7b

Browse files
committed
drop cpython 3.6
1 parent a2ad47d commit c3f0d7b

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

3838
install:

.circleci/config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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:

ci/build-wheels.sh

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,12 @@
1717

1818
# Compile wheels
1919
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
2326
"${PYBIN}/pip" wheel /io/ -w wheelhouse/
2427
done
2528

@@ -29,8 +32,7 @@ for whl in wheelhouse/*.whl; do
2932
done
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()')
3638
done

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,11 @@
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',

0 commit comments

Comments
 (0)