From 4b9df06568cd4d4e36c3b287658ce811bfa4b965 Mon Sep 17 00:00:00 2001 From: Philippe Tillet Date: Wed, 28 Jul 2021 04:35:14 -0700 Subject: [PATCH] [CI] Bumped dev version to 1.0.1 and fixed permissions in documentation.yml (#149) --- .github/workflows/documentation.yml | 2 ++ docs/getting-started/installation.rst | 2 ++ python/setup.py | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) 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",