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 4f19d62 commit e28dedaCopy full SHA for e28deda
1 file changed
admin-tools/check-3.11-versions.sh
@@ -0,0 +1,28 @@
1
+#!/bin/bash
2
+function finish {
3
+ cd $trepan3k_owd
4
+}
5
+
6
+# FIXME put some of the below in a common routine
7
+trepan3k_owd=$(pwd)
8
+# trap finish EXIT
9
10
+cd $(dirname ${BASH_SOURCE[0]})
11
+if ! source ./pyenv-3.11-versions ; then
12
+ exit $?
13
+fi
14
15
+. ./setup-python-3.11.sh
16
17
+cd ..
18
+for version in $PYVERSIONS; do
19
+ if ! pyenv local $version ; then
20
21
+ fi
22
+ python --version
23
+ make clean && pip install -e .
24
+ if ! make check; then
25
26
27
+ echo === $version ===
28
+done
0 commit comments