Compare commits
No commits in common. "6e748c614c466181b0909f513a50cc1241b44a40" and "6b5fcaf36374dcee363123b483c1bc497a3bb7a1" have entirely different histories.
6e748c614c
...
6b5fcaf363
|
@ -11,4 +11,4 @@ services:
|
|||
- ./data/piston:/piston
|
||||
tmpfs:
|
||||
- /piston/jobs:exec
|
||||
- /tmp:exec
|
||||
- /tmp
|
||||
|
|
|
@ -1,22 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
PREFIX=$(realpath $(dirname $0))
|
||||
|
||||
mkdir -p build
|
||||
|
||||
cd build
|
||||
|
||||
git clone https://github.com/Yeethon/cyeethon
|
||||
cd cyeethon
|
||||
|
||||
# Building and installing yeethon
|
||||
./configure --prefix "$PREFIX" --with-ensurepip=install
|
||||
make -j$(nproc)
|
||||
make install -j$(nproc)
|
||||
|
||||
# Cleaning up
|
||||
cd ../../ && rm -rf build
|
||||
|
||||
# This is alpha version of python, hence most of the libraries are not compatible with python3.10.0
|
||||
# As a result, they will not be compatible with yeethon3.10 too
|
||||
# bin/pip3 install numpy scipy pandas pycrypto whoosh bcrypt passlib
|
|
@ -1,4 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Put 'export' statements here for environment variables
|
||||
export PATH=$PWD/bin:$PATH
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"language": "yeethon",
|
||||
"version": "3.10.0",
|
||||
"aliases": ["yeethon3"]
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
python3.10 "$@"
|
|
@ -1,3 +0,0 @@
|
|||
li = ["N", "o", "t", "o", "k"]
|
||||
yeet li[:3]
|
||||
print(''.join(x.title() for x in li))
|
Loading…
Reference in New Issue