Removed stale examples. Update dependencies (#15951)

This commit is contained in:
IceS2 2024-04-18 17:41:09 +02:00 committed by GitHub
parent bc13659a6d
commit fd51df25fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 55 deletions

View File

@ -1,25 +0,0 @@
{
"source": {
"type": "sample-data",
"config": {
"sample_data_folder": "./examples/sample_data"
}
},
"sink": {
"type": "metadata-rest",
"config": {}
},
"metadata_server": {
"type": "metadata-server",
"config": {
"api_endpoint": "http://localhost:8585/api",
"auth_provider_type": "azure",
"client_id": "<client_id>",
"authority":"https://login.microsoftonline.com/<tenant_id>",
"secret_key":"<client_secret>",
"scopes": [
"<resource_uri>"
]
}
}
}

View File

@ -1,26 +0,0 @@
{
"source": {
"type": "sample-data",
"config": {
"sample_data_folder": "./examples/sample_data"
}
},
"sink": {
"type": "metadata-rest",
"config": {}
},
"metadata_server": {
"type": "metadata-server",
"config": {
"api_endpoint": "http://localhost:8585/api",
"auth_provider_type": "okta",
"client_id": "{client_id}",
"org_url": "https://{Issuer URI}/v1/token",
"private_key": "{'p':'<value>','kty': 'RSA','q': '<value>','d': '<value>','e': '<value>','use': 'sig','kid': '<value / key id>','qi': '<value>','dp': '<value>','alg': 'RS256','dq': '<value>','n': '<value>'}",
"email": "email",
"scopes": [
"Authorization Server Scopes"
]
}
}
}

View File

@ -21,7 +21,7 @@ from setuptools import setup
VERSIONS = {
"airflow": "apache-airflow==2.7.3",
"adlfs": "adlfs~=2022.11",
"avro": "avro~=1.11",
"avro": "avro>=1.11.3,<1.12",
"boto3": "boto3>=1.20,<2.0", # No need to add botocore separately. It's a dep from boto3
"geoalchemy2": "GeoAlchemy2~=0.12",
"google-cloud-storage": "google-cloud-storage==1.43.0",
@ -91,7 +91,7 @@ base_requirements = {
VERSIONS["boto3"], # Required in base for the secrets manager
"cached-property==1.5.2", # LineageParser
"chardet==4.0.0", # Used in the profiler
"cryptography",
"cryptography>=42.0.0",
"email-validator>=1.0.3", # For the pydantic generated models for Email
"importlib-metadata>=4.13.0", # From airflow constraints
"Jinja2>=2.11.3",
@ -209,7 +209,6 @@ plugins: Dict[str, Set[str]] = {
},
"kafka": {*COMMONS["kafka"]},
"kinesis": {VERSIONS["boto3"]},
"ldap-users": {"ldap3==2.9.1"},
"looker": {
VERSIONS["looker-sdk"],
VERSIONS["lkml"],
@ -223,7 +222,6 @@ plugins: Dict[str, Set[str]] = {
"mssql-odbc": {VERSIONS["pyodbc"]},
"mysql": {VERSIONS["pymysql"]},
"nifi": {}, # uses requests
"okta": {"okta~=2.3"},
"openlineage": {*COMMONS["kafka"]},
"oracle": {"cx_Oracle>=8.3.0,<9", "oracledb~=1.2"},
"pgspider": {"psycopg2-binary", "sqlalchemy-pgspider"},