bump ingestion version

This commit is contained in:
ulixius9 2025-02-04 20:47:46 +05:30
parent d344336455
commit f500c73941
5 changed files with 6 additions and 6 deletions

View File

@ -76,7 +76,7 @@ ARG INGESTION_DEPENDENCY="all"
ENV PIP_NO_CACHE_DIR=1
# Make pip silent
ENV PIP_QUIET=1
ARG RI_VERSION="1.6.3.1"
ARG RI_VERSION="1.6.3.2"
RUN pip install --upgrade pip
RUN pip install "openmetadata-managed-apis~=${RI_VERSION}" --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.9.1/constraints-3.10.txt"
RUN pip install "openmetadata-ingestion[${INGESTION_DEPENDENCY}]~=${RI_VERSION}"

View File

@ -81,7 +81,7 @@ ENV PIP_QUIET=1
RUN pip install --upgrade pip
ARG INGESTION_DEPENDENCY="all"
ARG RI_VERSION="1.6.3.1"
ARG RI_VERSION="1.6.3.2"
RUN pip install --upgrade pip
RUN pip install "openmetadata-ingestion[airflow]~=${RI_VERSION}"
RUN pip install "openmetadata-ingestion[${INGESTION_DEPENDENCY}]~=${RI_VERSION}"

View File

@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
# since it helps us organize and isolate version management
[project]
name = "openmetadata-ingestion"
version = "1.6.3.1"
version = "1.6.3.2"
dynamic = ["readme", "dependencies", "optional-dependencies"]
authors = [
{ name = "OpenMetadata Committers" }

View File

@ -299,7 +299,7 @@ SELECT
FROM SNOWFLAKE.ACCOUNT_USAGE.PROCEDURES
WHERE PROCEDURE_CATALOG = '{database_name}'
AND PROCEDURE_SCHEMA = '{schema_name}'
AND DELETED IS NOT NULL
AND DELETED IS NULL
"""
)
@ -316,7 +316,7 @@ SELECT
FROM SNOWFLAKE.ACCOUNT_USAGE.FUNCTIONS
WHERE FUNCTION_CATALOG = '{database_name}'
AND FUNCTION_SCHEMA = '{schema_name}'
AND DELETED IS NOT NULL
AND DELETED IS NULL
"""
)

View File

@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
# since it helps us organize and isolate version management
[project]
name = "openmetadata_managed_apis"
version = "1.6.3.1"
version = "1.6.3.2"
readme = "README.md"
authors = [
{name = "OpenMetadata Committers"}