Skip to content

Commit

Permalink
Update version for release 1.4.2rc5 (#2507)
Browse files Browse the repository at this point in the history
update version for release 1.4.2rc5
  • Loading branch information
yunchu authored Sep 19, 2023
1 parent fae472b commit 4ddbffc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,21 @@
# documentation root, use os.path.abspath to make it absolute, like shown here.
#

import os
import sys

sys.path.insert(0, os.path.abspath("../../src"))

from otx import __version__

# ruff: noqa

# -- Project information ----------------------------------------------------- #

project = 'OpenVINO™ Training Extensions'
copyright = '2023, OpenVINO™ Training Extensions Contributors'
author = 'OpenVINO™ Training Extensions Contributors'
release = '1.4.2'
release = __version__

# -- General configuration --------------------------------------------------- #

Expand Down
2 changes: 1 addition & 1 deletion src/otx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# Copyright (C) 2021-2023 Intel Corporation
# SPDX-License-Identifier: Apache-2.0

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

0 comments on commit 4ddbffc

Please sign in to comment.