diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index a61a77ee9..d60d500cb 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -36,5 +36,7 @@ jobs: run: | git checkout gh-pages sh ./update-website.sh + eval `ssh-agent -s` + DISPLAY=:0 SSH_ASKPASS=~/.ssh/give_pass.sh ssh-add ${{ secrets.SSH_KEY }} <<< ${{ secrets.SSH_PASS }} git remote set-url origin git@github.com:ptillet/triton.git git push \ No newline at end of file diff --git a/docs/getting-started/installation.rst b/docs/getting-started/installation.rst index 57fd589a2..999b38959 100644 --- a/docs/getting-started/installation.rst +++ b/docs/getting-started/installation.rst @@ -8,6 +8,8 @@ Binary Distributions You can install the latest stable release of Triton from pip: +.. code-block:: bash + pip install triton Binary wheels are available for CPython 3.6-3.9 and PyPy 3.6-3.7. diff --git a/python/setup.py b/python/setup.py index d53a6310d..d7f640ed0 100644 --- a/python/setup.py +++ b/python/setup.py @@ -121,7 +121,7 @@ class CMakeBuild(build_ext): setup( name="triton", - version="1.0.0", + version="1.0.1", author="Philippe Tillet", author_email="phil@openai.com", description="A language and compiler for custom Deep Learning operations",