Skip to content

Commit

Permalink
Updating release number (#1127)
Browse files Browse the repository at this point in the history
  • Loading branch information
oualib authored Jan 16, 2024
1 parent d9a2a25 commit cc1700b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

setuptools.setup(
name="verticapy",
version="1.0.0",
version="1.0.1",
author="Badr Ouali",
author_email="[email protected]",
url="https://github.com/vertica/VerticaPy",
Expand Down
4 changes: 2 additions & 2 deletions verticapy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@
)
__url__: str = "https://github.com/vertica/verticapy/"
__license__: str = "Apache License, Version 2.0"
__version__: str = "1.0.0"
__version__: str = "1.0.1"
__iteration__: int = 1
__date__: str = "01092024"
__date__: str = "01152024"
__last_commit__: str = "a06640a3cc5a69a826c00f030c49fd89905827b8"
__long_version__: str = f"{__version__}-{__iteration__}{__date__}-{__last_commit__}"
__codecov__: float = 0.8316
Expand Down
15 changes: 8 additions & 7 deletions verticapy/performance/vertica/qprof.py
Original file line number Diff line number Diff line change
Expand Up @@ -1245,11 +1245,12 @@ def _create_copy_v_table(self) -> None:

# Getting the new DATATYPES
try:
self.tables_dtypes += [
get_data_types(
f"SELECT * FROM {new_schema}.{new_table} LIMIT 0",
)
]
if not (self.overwrite):
self.tables_dtypes += [
get_data_types(
f"SELECT * FROM {new_schema}.{new_table} LIMIT 0",
)
]
except:
if conf.get_option("print_info") and idx == 0:
print("Some tables seem to not exist...")
Expand All @@ -1267,10 +1268,10 @@ def _create_copy_v_table(self) -> None:
f"SELECT * FROM {schema}.{table} LIMIT 0",
)
]
if not (exists):
if not (exists) or (self.overwrite):
self.tables_dtypes += [self.v_tables_dtypes[-1]]

if not (exists):
if not (exists) or (self.overwrite):
if conf.get_option("print_info"):
print(
f"Copy of {schema}.{table} created in {new_schema}.{new_table}"
Expand Down

0 comments on commit cc1700b

Please sign in to comment.