Skip to content

Commit 11ff063

Browse files
committed
Remove build for Python 3.10
1 parent 02471a6 commit 11ff063

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,18 +59,16 @@ jobs:
5959
curl -L https://github.com/sdispater/python-binaries/releases/download/3.7.6/python-3.7.6.macos.tar.xz -o python-3.7.6.tar.xz
6060
curl -L https://github.com/sdispater/python-binaries/releases/download/3.8.3/python-3.8.3.macos.tar.xz -o python-3.8.3.tar.xz
6161
curl -L https://github.com/sdispater/python-binaries/releases/download/3.9.5/python-3.9.5.macos.tar.xz -o python-3.9.5.tar.xz
62-
curl -L https://github.com/sdispater/python-binaries/releases/download/3.10.0b3/python-3.10.0b3.macos.tar.xz -o python-3.10.0b3.tar.xz
6362
tar -zxf python-2.7.18.tar.xz
6463
tar -zxf python-3.5.9.tar.xz
6564
tar -zxf python-3.6.8.tar.xz
6665
tar -zxf python-3.7.6.tar.xz
6766
tar -zxf python-3.8.3.tar.xz
6867
tar -zxf python-3.9.5.tar.xz
69-
tar -zxf python-3.10.0b3.tar.xz
7068
- name: Build specific release
7169
run: |
7270
source $HOME/.poetry/env
73-
poetry run python sonnet make release --ansi -P "2.7:python-2.7.18/bin/python" -P "3.5:python-3.5.9/bin/python" -P "3.6:python-3.6.8/bin/python" -P "3.7:python-3.7.6/bin/python" -P "3.8:python-3.8.3/bin/python" -P "3.9:python-3.9.5/bin/python" -P "3.10:python-3.10.0b3/bin/python"
71+
poetry run python sonnet make release --ansi -P "2.7:python-2.7.18/bin/python" -P "3.5:python-3.5.9/bin/python" -P "3.6:python-3.6.8/bin/python" -P "3.7:python-3.7.6/bin/python" -P "3.8:python-3.8.3/bin/python" -P "3.9:python-3.9.5/bin/python"
7472
- name: Upload release file
7573
uses: actions/upload-artifact@v1
7674
with:
@@ -112,26 +110,23 @@ jobs:
112110
Invoke-WebRequest https://github.com/sdispater/python-binaries/releases/download/3.7.6/python-3.7.6.windows.tar.xz -O python-3.7.6.tar.xz
113111
Invoke-WebRequest https://github.com/sdispater/python-binaries/releases/download/3.8.3/python-3.8.3.windows.tar.xz -O python-3.8.3.tar.xz
114112
Invoke-WebRequest https://github.com/sdispater/python-binaries/releases/download/3.9.5/python-3.9.5.windows.tar.xz -O python-3.9.5.tar.xz
115-
Invoke-WebRequest https://github.com/sdispater/python-binaries/releases/download/3.10.0b3/python-3.10.0b3.windows.tar.xz -O python-3.10.0b3.tar.xz
116113
7z x python-2.7.17.tar.xz
117114
7z x python-3.5.4.tar.xz
118115
7z x python-3.6.8.tar.xz
119116
7z x python-3.7.6.tar.xz
120117
7z x python-3.8.3.tar.xz
121118
7z x python-3.9.5.tar.xz
122-
7z x python-3.10.0b3.tar.xz
123119
7z x python-2.7.17.tar
124120
7z x python-3.4.4.tar
125121
7z x python-3.5.4.tar
126122
7z x python-3.6.8.tar
127123
7z x python-3.7.6.tar
128124
7z x python-3.8.3.tar
129125
7z x python-3.9.5.tar
130-
7z x python-3.10.0b3.tar
131126
- name: Build specific release
132127
run: |
133128
$env:Path += ";$env:Userprofile\.poetry\bin"
134-
poetry run python sonnet make release --ansi -P "2.7:python-2.7.17\python.exe" -P "3.5:python-3.5.4\python.exe" -P "3.6:python-3.6.8\python.exe" -P "3.7:python-3.7.6\python.exe" -P "3.8:python-3.8.3\python.exe" -P "3.9:python-3.9.5\python.exe" -P "3.10:python-3.10.0b3\python.exe"
129+
poetry run python sonnet make release --ansi -P "2.7:python-2.7.17\python.exe" -P "3.5:python-3.5.4\python.exe" -P "3.6:python-3.6.8\python.exe" -P "3.7:python-3.7.6\python.exe" -P "3.8:python-3.8.3\python.exe" -P "3.9:python-3.9.5\python.exe"
135130
- name: Upload release file
136131
uses: actions/upload-artifact@v1
137132
with:

make-nix-release.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ if [ "$OSTYPE" == "linux-gnu" ]; then
1414
$PYTHON get-poetry.py -y
1515
POETRY="$PYTHON $HOME/.poetry/bin/poetry"
1616
RUNTIMES[5]="${PYTHON39:+-P "3.9:$PYTHON39"}"
17-
RUNTIMES[6]="${PYTHON310:+-P "3.10:$PYTHON310"}"
1817
else
1918
$PYTHON -m pip install poetry -U --pre
2019
POETRY="$PYTHON -m poetry"

0 commit comments

Comments
 (0)