Skip to content

Commit c58b6e4

Browse files
committed
increment python version
1 parent df586a6 commit c58b6e4

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "py-zerox"
3-
version = "0.0.5"
3+
version = "0.0.6"
44
description = "ocr documents using vision models from all popular providers like OpenAI, Azure OpenAI, Anthropic, AWS Bedrock etc"
55
authors = ["wizenheimer","pradhyumna85"]
66
license = "MIT"

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = py-zerox
3-
version = 0.0.5
3+
version = 0.0.6
44
description = ocr documents using vision models from all popular providers like OpenAI, Azure OpenAI, Anthropic, AWS Bedrock etc
55
long_description = file: README.md
66
long_description_content_type = text/markdown

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
class InstallSystemDependencies(install):
88
def run(self):
99
try:
10-
subprocess.check_call([sys.executable, "-m", "py_zerox.scripts.pre_install"])
10+
subprocess.check_call(
11+
[sys.executable, "-m", "py_zerox.scripts.pre_install"])
1112
except subprocess.CalledProcessError as e:
1213
print(f"Pre-install script failed: {e}", file=sys.stderr)
1314
sys.exit(1)
@@ -19,7 +20,7 @@ def run(self):
1920
cmdclass={
2021
"install": InstallSystemDependencies,
2122
},
22-
version="0.0.5",
23+
version="0.0.6",
2324
packages=find_packages(where="py_zerox"), # Specify the root folder
2425
package_dir={"": "py_zerox"}, # Map root directory
2526
include_package_data=True,

0 commit comments

Comments
 (0)