Skip to content

Commit 7a74d90

Browse files
committed
unix: add Python 3.9 to release scripts
3.9.0 was just released. Let's build 3.9 as part of the release scripts.
1 parent 9c3cbc9 commit 7a74d90

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

release-linux.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ export PYBUILD_RELEASE_TAG=$(date --utc '+%Y%m%dT%H%M')
99

1010
./build-linux.py --target-triple x86_64-unknown-linux-gnu --python cpython-3.8 --optimizations debug --libressl
1111
./build-linux.py --target-triple x86_64-unknown-linux-gnu --python cpython-3.8 --optimizations pgo --libressl
12+
./build-linux.py --target-triple x86_64-unknown-linux-gnu --python cpython-3.9 --optimizations debug --libressl
13+
./build-linux.py --target-triple x86_64-unknown-linux-gnu --python cpython-3.9 --optimizations pgo --libressl
1214

1315
./build-linux.py --target-triple x86_64-unknown-linux-musl --python cpython-3.8 --optimizations debug --libressl
1416
./build-linux.py --target-triple x86_64-unknown-linux-musl --python cpython-3.8 --optimizations noopt --libressl
17+
./build-linux.py --target-triple x86_64-unknown-linux-musl --python cpython-3.9 --optimizations debug --libressl
18+
./build-linux.py --target-triple x86_64-unknown-linux-musl --python cpython-3.9 --optimizations noopt --libressl

release-macos.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ export PYBUILD_RELEASE_TAG=$(date -u '+%Y%m%dT%H%M')
99

1010
./build-macos.py --python cpython-3.8 --optimizations debug
1111
./build-macos.py --python cpython-3.8 --optimizations pgo
12+
13+
./build-macos.py --python cpython-3.9 --optimizations debug
14+
./build-macos.py --python cpython-3.9 --optimizations pgo

0 commit comments

Comments
 (0)