File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Builds
33# TODO: generalize steps
44
55env :
6- DSS_CAPI_TAG : ' 0.12.1 '
6+ DSS_CAPI_TAG : ' 0.13.0 '
77 ARTIFACTS_FOLDER : ' ${{ github.workspace }}/artifacts'
88
99on :
@@ -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
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ conda config --add channels conda-forge
1818conda create -p ../boa boa anaconda-client
1919conda 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 "
2222for pyversion in $PYTHON_VERSIONS
2323do
2424 # 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
44
55cd dss_python
66python3 -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"
88cd ..
99
1010# Bundle external shared libraries into the wheels
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ mkdir -p artifacts
22cd 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
Original file line number Diff line number Diff line change 33set -e -x
44
55ORIGINAL_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
88for pydir in $PYTHON_DIRS
99do
Original file line number Diff line number Diff line change 11python :
2- - 3.6
32 - 3.7
43 - 3.8
54 - 3.9
65 - 3.10
6+ - 3.11
77
88
You can’t perform that action at this time.
0 commit comments