From 52976d5280ee07d725145dca28d6aac92510fdaa Mon Sep 17 00:00:00 2001 From: Andrei Stoian <95410270+andrei-stoian-zama@users.noreply.github.com> Date: Mon, 5 Sep 2022 16:11:57 +0200 Subject: [PATCH] chore: fix release CI and bump to rc3 (#1666) --- .github/workflows/continuous-integration.yaml | 2 +- docs/conf.py | 2 +- pyproject.toml | 2 +- src/concrete/ml/version.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index db7ab67d7..0898fd8c7 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -679,7 +679,7 @@ jobs: # remove graphviz installs which are only required for the actual package and not dev tools - name: Install dependencies run: | - sudo apt-get install --no-install-recommends -y graphviz* + sudo apt-get install --no-install-recommends -y graphviz* gnome-keyring python -m pip install --upgrade pip python -m pip install poetry make setup_env diff --git a/docs/conf.py b/docs/conf.py index 7de2b4afa..59f2069f6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,7 +27,7 @@ root_url = root_url if root_url.endswith("/") else root_url + "/" # The full version, including alpha/beta/rc tags -release = "0.3.0-rc2" +release = "0.3.0-rc3" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index b65af6250..c82edf73e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "concrete-ml" -version = "0.3.0-rc2" +version = "0.3.0-rc3" description = "Concrete-ML is an open-source set of tools which aims to simplify the use of fully homomorphic encryption (FHE) for data scientists." license = "BSD-3-Clause-Clear" authors = [ diff --git a/src/concrete/ml/version.py b/src/concrete/ml/version.py index b4493e1a3..0e78e3792 100644 --- a/src/concrete/ml/version.py +++ b/src/concrete/ml/version.py @@ -1,3 +1,3 @@ """File to manage the version of the package.""" # Auto-generated by "make set_version" do not modify -__version__ = "0.3.0-rc2" +__version__ = "0.3.0-rc3"