Implementation from scratch of some machine learning algorithms
Utilisation de pyenv : https://github.com/pyenv/pyenv
3.6, 3.7, 3.8, 3.9, 3.10
pyenv install 3.6.9 3.7.10 3.8.9 3.9.4 3.10a7 python -m venv .venv . .venv/bin/activate pip install -r requirements.txt
pyenv local 3.6.9 3.7.10 3.8.9 3.9.4 3.10a7 tox
python setup.py bdist_wheel
python -m pip install -e .
twine upload -r innova dist/*
find . | grep -E "(pycache|.pyc|.pyo$)" | xargs rm -rf