File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Builds
3
3
# TODO: generalize steps
4
4
5
5
env :
6
- DSS_CAPI_TAG : ' 0.12.1 '
6
+ DSS_CAPI_TAG : ' 0.13.0 '
7
7
ARTIFACTS_FOLDER : ' ${{ github.workspace }}/artifacts'
8
8
9
9
on :
@@ -210,7 +210,7 @@ jobs:
210
210
path : ' dss_python'
211
211
- uses : actions/setup-python@v2
212
212
with :
213
- python-version : ' 3.6 '
213
+ python-version : ' 3.7 '
214
214
architecture : ' x86'
215
215
- name : ' Download/extract DSS C-API binaries'
216
216
shell : cmd
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ conda config --add channels conda-forge
18
18
conda create -p ../boa boa anaconda-client
19
19
conda activate boa
20
20
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 "
22
22
for pyversion in $PYTHON_VERSIONS
23
23
do
24
24
# Workaround to build when a single version fails
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export DSS_PYTHON_MANYLINUX=1
4
4
5
5
cd dss_python
6
6
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"
8
8
cd ..
9
9
10
10
# Bundle external shared libraries into the wheels
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ mkdir -p artifacts
2
2
cd dss_python
3
3
$PYTHON -m pip install --upgrade pip
4
4
$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
Original file line number Diff line number Diff line change 3
3
set -e -x
4
4
5
5
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 "
7
7
8
8
for pydir in $PYTHON_DIRS
9
9
do
Original file line number Diff line number Diff line change 1
1
python :
2
- - 3.6
3
2
- 3.7
4
3
- 3.8
5
4
- 3.9
6
5
- 3.10
6
+ - 3.11
7
7
8
8
You can’t perform that action at this time.
0 commit comments