Skip to content

Commit a207d49

Browse files
committed
3.1.73pre-all
1 parent b5a5cee commit a207d49

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
build:
1919
runs-on: ubuntu-22.04
2020
env:
21-
BUILDS: 3.12 3.13
21+
BUILDS: 3.12 3.13 3.14
2222
SDKROOT: /opt/python-wasm-sdk
2323
EMFLAVOUR: latest
2424
Py_GIL_DISABLED: false

config

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ EXTRABINS="/usr/local/bin /opt/bin"
6060
# stable==latest dev==tot
6161
export EMFLAVOUR=${EMFLAVOUR:latest}
6262
export EMSDK_QUIET=1
63-
63+
export EMSDK_NOTTY=0
64+
export EMSDK_VERBOSE=0
6465

6566
#temp fix for oom on CI (Error: Process completed with exit code 143.)
6667
export EMSDK_NUM_CORES=1

emsdk-cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ else:
400400
# TODO: module level
401401
# -gsource-map --source-map-base /
402402
pass
403-
final.extend(arglist(WASM_EXTRA, "-DPYDK_STATIC"))
403+
final.extend(arglist(WASM_EXTRA, "-D__PYDK__=1"))
404404

405405
final.extend(out)
406406
final.extend(COMMON)

scripts/cpython-fetch.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ fi
4444

4545
if echo $PYBUILD |grep -q 14$
4646
then
47-
wget -c https://www.python.org/ftp/python/3.14.0/Python-3.14.0a1.tar.xz
48-
tar xf Python-3.14.0a1.tar.xz
49-
ln -s Python-3.14.0a1 cpython${PYBUILD}
47+
wget -c https://www.python.org/ftp/python/3.14.0/Python-3.14.0a2.tar.xz
48+
tar xf Python-3.14.0a2.tar.xz
49+
ln -s Python-3.14.0a2 cpython${PYBUILD}
5050

5151
mkdir $ROOT/devices/emsdk/usr/lib $ROOT/devices/$(arch)/usr/lib -p
5252

0 commit comments

Comments
 (0)