From 11ce1603918b5ad156e2b94e3c5b7c07905b9c6c Mon Sep 17 00:00:00 2001 From: hfcloud Date: Sun, 2 Apr 2023 22:36:16 +0800 Subject: [PATCH] fix linux buiding bug --- README.md | 2 +- oidn/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 02038f8..0b0a7d0 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # OIDN-python -Python Binding of [Intel Open Image Denoise](https://github.com/OpenImageDenoise/oidn) Version 0.2 (Based on OIDN 1.4.3) +Python Binding of [Intel Open Image Denoise](https://github.com/OpenImageDenoise/oidn) Version 0.2.1 (Based on OIDN 1.4.3) Install using pip. diff --git a/oidn/__init__.py b/oidn/__init__.py index 6f4485e..cec279f 100644 --- a/oidn/__init__.py +++ b/oidn/__init__.py @@ -5,7 +5,7 @@ from oidn.capi import * oidn_version = '1.4.3' -oidn_py_version = '0.2' +oidn_py_version = '0.2.1' def __load_lib(): cur_path = os.path.dirname(__file__) diff --git a/setup.py b/setup.py index a34f750..9d411b3 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name = 'oidn', - version = '0.2', + version = '0.2.1', author = 'HfCloud', author_email = 'sxysxygm@gmail.com', description = 'A simple python binding for Intel OIDN',