Skip to content

Commit abbc0e2

Browse files
committed
Update DSS_CAPI_TAG, include Python 3.11, exclude 3.6.
Python 3.6 is out of support.
1 parent d57b67e commit abbc0e2

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/builds.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Builds
33
# TODO: generalize steps
44

55
env:
6-
DSS_CAPI_TAG: '0.12.1'
6+
DSS_CAPI_TAG: '0.13.0'
77
ARTIFACTS_FOLDER: '${{ github.workspace }}/artifacts'
88

99
on:
@@ -210,7 +210,7 @@ jobs:
210210
path: 'dss_python'
211211
- uses: actions/setup-python@v2
212212
with:
213-
python-version: '3.6'
213+
python-version: '3.7'
214214
architecture: 'x86'
215215
- name: 'Download/extract DSS C-API binaries'
216216
shell: cmd

ci/build_conda.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ conda config --add channels conda-forge
1818
conda create -p ../boa boa anaconda-client
1919
conda activate boa
2020

21-
PYTHON_VERSIONS="3.6 3.7 3.8 3.9 3.10"
21+
PYTHON_VERSIONS="3.7 3.8 3.9 3.10 3.11"
2222
for pyversion in $PYTHON_VERSIONS
2323
do
2424
# Workaround to build when a single version fails

ci/build_linux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export DSS_PYTHON_MANYLINUX=1
44

55
cd dss_python
66
python3 -m pip install --upgrade pip cffi wheel
7-
python3 setup.py --quiet bdist_wheel --py-limited-api cp36 --dist-dir="../artifacts_raw"
7+
python3 setup.py --quiet bdist_wheel --py-limited-api cp37 --dist-dir="../artifacts_raw"
88
cd ..
99

1010
# Bundle external shared libraries into the wheels

ci/build_wheel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ mkdir -p artifacts
22
cd dss_python
33
$PYTHON -m pip install --upgrade pip
44
$PYTHON -m pip install cffi wheel
5-
$PYTHON setup.py --quiet bdist_wheel --py-limited-api cp36 --dist-dir=$ARTIFACTS_FOLDER
5+
$PYTHON setup.py --quiet bdist_wheel --py-limited-api cp37 --dist-dir=$ARTIFACTS_FOLDER

ci/test_wheel.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e -x
44

55
ORIGINAL_PATH=$PATH
6-
PYTHON_DIRS="cp36-cp36m cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310 "
6+
PYTHON_DIRS="cp37-cp37m cp38-cp38 cp39-cp39 cp310-cp310 cp311-cp311"
77

88
for pydir in $PYTHON_DIRS
99
do

conda/conda_build_config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
python:
2-
- 3.6
32
- 3.7
43
- 3.8
54
- 3.9
65
- 3.10
6+
- 3.11
77

88

0 commit comments

Comments
 (0)