summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Flamary <remi.flamary@gmail.com>2021-12-31 12:47:27 +0100
committerGitHub <noreply@github.com>2021-12-31 12:47:27 +0100
commitbe0ed1dcd0b65ec804e454f1a2d3c0d227c0ddbe (patch)
tree6f7fe79a1f8dcf6160185fa1070b8b905f5a4063
parent7ad97e3118e0a6cbd4b00616c96c19684fb4d401 (diff)
[MRG] Release 0.8.1.0 and correct doc build (#332)
* update ersion and change doc build * update release file * debug release of doc * set version number to 0.8.1.0
-rw-r--r--.circleci/config.yml8
-rw-r--r--RELEASES.md12
-rw-r--r--ot/__init__.py2
3 files changed, 18 insertions, 4 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 6abba78..f5cb756 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -161,7 +161,10 @@ workflows:
default:
jobs:
- - build_docs
+ - build_docs:
+ filters:
+ tags:
+ only: /[0-9]+(\.[0-9]+)*$/
- deploy_master:
requires:
- build_docs
@@ -174,7 +177,6 @@ workflows:
- build_docs
filters:
branches:
- only:
- - master
+ ignore: /.*/
tags:
only: /[0-9]+(\.[0-9]+)*$/ \ No newline at end of file
diff --git a/RELEASES.md b/RELEASES.md
index 2a45465..00af0fb 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -1,6 +1,18 @@
# Releases
+## 0.8.1.0
+*December 2021*
+
+This is a bug fix release that will remove the `benchmarks` module form the
+installation and correct the documentation generation.
+
+#### Closed issues
+
+- Bug in documentation generation (tag VS master push, PR #332)
+- Remove installation of the benchmarks in global namespace (Issue #331, PR #333)
+
+
## 0.8.1
*December 2021*
diff --git a/ot/__init__.py b/ot/__init__.py
index e436571..f55819d 100644
--- a/ot/__init__.py
+++ b/ot/__init__.py
@@ -50,7 +50,7 @@ from .gromov import (gromov_wasserstein, gromov_wasserstein2,
# utils functions
from .utils import dist, unif, tic, toc, toq
-__version__ = "0.8.1"
+__version__ = "0.8.1.0"
__all__ = ['emd', 'emd2', 'emd_1d', 'sinkhorn', 'sinkhorn2', 'utils',
'datasets', 'bregman', 'lp', 'tic', 'toc', 'toq', 'gromov',