diff --git a/packages/python/3.11.3/build.sh b/packages/python/3.11.3/build.sh new file mode 100644 index 0000000..10f887f --- /dev/null +++ b/packages/python/3.11.3/build.sh @@ -0,0 +1,21 @@ +#!/bin/bash + +PREFIX=$(realpath $(dirname $0)) + +mkdir -p build + +cd build + +curl "https://www.python.org/ftp/python/3.11.3/Python-3.11.3.tgz" -o python.tar.gz +tar xzf python.tar.gz --strip-components=1 +rm python.tar.gz + +./configure --prefix "$PREFIX" --with-ensurepip=install +make -j$(nproc) +make install -j$(nproc) + +cd .. + +rm -rf build + +bin/pip3 install numpy scipy pandas pycrypto whoosh bcrypt passlib sympy \ No newline at end of file diff --git a/packages/python/3.11.3/environment b/packages/python/3.11.3/environment new file mode 100644 index 0000000..bd0ff98 --- /dev/null +++ b/packages/python/3.11.3/environment @@ -0,0 +1 @@ +export PATH=$PWD/bin:$PATH \ No newline at end of file diff --git a/packages/python/3.11.3/metadata.json b/packages/python/3.11.3/metadata.json new file mode 100644 index 0000000..ccafed4 --- /dev/null +++ b/packages/python/3.11.3/metadata.json @@ -0,0 +1,5 @@ +{ + "language": "python", + "version": "3.11.3", + "aliases": ["py", "py3", "python3"] +} \ No newline at end of file diff --git a/packages/python/3.11.3/run b/packages/python/3.11.3/run new file mode 100644 index 0000000..fe6f4df --- /dev/null +++ b/packages/python/3.11.3/run @@ -0,0 +1,3 @@ +#!/bin/bash + +python3.11 "$@" \ No newline at end of file diff --git a/packages/python/3.11.3/test.py b/packages/python/3.11.3/test.py new file mode 100644 index 0000000..c3135e2 --- /dev/null +++ b/packages/python/3.11.3/test.py @@ -0,0 +1,7 @@ +working = True + +match working: + case True: + print("OK") + case False: + print() \ No newline at end of file