Skip to content

Commit 4ddbffc

Browse files
authored
Update version for release 1.4.2rc5 (#2507)
update version for release 1.4.2rc5
1 parent fae472b commit 4ddbffc

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

docs/source/conf.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,21 @@
1111
# documentation root, use os.path.abspath to make it absolute, like shown here.
1212
#
1313

14+
import os
15+
import sys
16+
17+
sys.path.insert(0, os.path.abspath("../../src"))
18+
19+
from otx import __version__
20+
1421
# ruff: noqa
1522

1623
# -- Project information ----------------------------------------------------- #
1724

1825
project = 'OpenVINO™ Training Extensions'
1926
copyright = '2023, OpenVINO™ Training Extensions Contributors'
2027
author = 'OpenVINO™ Training Extensions Contributors'
21-
release = '1.4.2'
28+
release = __version__
2229

2330
# -- General configuration --------------------------------------------------- #
2431

src/otx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# Copyright (C) 2021-2023 Intel Corporation
44
# SPDX-License-Identifier: Apache-2.0
55

6-
__version__ = "1.4.2rc4"
6+
__version__ = "1.4.2rc5"
77
# NOTE: Sync w/ src/otx/api/usecases/exportable_code/demo/requirements.txt on release
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
openvino==2023.0
22
openvino-model-api==0.1.3
3-
otx==1.4.2rc4
3+
otx==1.4.2rc5
44
numpy>=1.21.0,<=1.23.5 # np.bool was removed in 1.24.0 which was used in openvino runtime

0 commit comments

Comments
 (0)