Skip to content

Commit

Permalink
chore: fix release CI and bump to rc3 (#1666)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-stoian-zama authored Sep 5, 2022
1 parent 186f888 commit 52976d5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion src/concrete/ml/version.py
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 52976d5

Please sign in to comment.