We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 218e9ac commit 4938adeCopy full SHA for 4938ade
config
@@ -7,8 +7,8 @@ export PYTHONDONTWRITEBYTECODE=1
7
export REBUILD=${REBUILD:-false}
8
export CI=${CI:-false}
9
10
-export PYMAJOR=3
11
-export PYBUILD=${PYBUILD:-${PYMAJOR}.11}
+export PYBUILD=${PYBUILD:-3.11}
+export PYMAJOR=$(echo -n $PYBUILD|cut -d. -f1)
12
export PYMINOR=$(echo -n $PYBUILD|cut -d. -f2)
13
14
scripts/cpython-fetch.sh
@@ -6,6 +6,7 @@ echo "
6
* cpython-fetch $PYBUILD *
"
+mkdir -p src
pushd src 2>&1 >/dev/null
0 commit comments