Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 631 Bytes

DEPLOY.md

File metadata and controls

32 lines (24 loc) · 631 Bytes

New version to Pypi

First update the version number, then do (change 0.X.Y).

$ python3 -m build
$ twine upload --repository-url https://upload.pypi.org/legacy/ dist/efficient_apriori-0.X.Y*

Must have conda install "twine>=1.11.0", conda install "setuptools>=38.6.0" and conda install wheel==0.31.0 for markdown to be rendered correctly.

Pushing tags to GitHub

$ git tag X.Y
$ git push origin X.Y

Setting up conda environment for testing

$ conda create -n apriori python=3.6
$ source activate apriori
$ pip install efficient_apriori
$ python
$ conda remove -n apriori --all