Skip to content

Commit

Permalink
increment python version
Browse files Browse the repository at this point in the history
  • Loading branch information
tylermaran committed Oct 20, 2024
1 parent df586a6 commit c58b6e4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "py-zerox"
version = "0.0.5"
version = "0.0.6"
description = "ocr documents using vision models from all popular providers like OpenAI, Azure OpenAI, Anthropic, AWS Bedrock etc"
authors = ["wizenheimer","pradhyumna85"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = py-zerox
version = 0.0.5
version = 0.0.6
description = ocr documents using vision models from all popular providers like OpenAI, Azure OpenAI, Anthropic, AWS Bedrock etc
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
class InstallSystemDependencies(install):
def run(self):
try:
subprocess.check_call([sys.executable, "-m", "py_zerox.scripts.pre_install"])
subprocess.check_call(
[sys.executable, "-m", "py_zerox.scripts.pre_install"])
except subprocess.CalledProcessError as e:
print(f"Pre-install script failed: {e}", file=sys.stderr)
sys.exit(1)
Expand All @@ -19,7 +20,7 @@ def run(self):
cmdclass={
"install": InstallSystemDependencies,
},
version="0.0.5",
version="0.0.6",
packages=find_packages(where="py_zerox"), # Specify the root folder
package_dir={"": "py_zerox"}, # Map root directory
include_package_data=True,
Expand Down

0 comments on commit c58b6e4

Please sign in to comment.