Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update requirements txt file #317

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions pyatlan/model/assets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
from .dbt_column_process import DbtColumnProcess
from .airflow_dag import AirflowDag
from .airflow_task import AirflowTask
from .s3 import S3
# from .s3 import S3
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why was the S3 asset commented out?

from .a_d_l_s import ADLS
from .g_c_s import GCS
from .monte_carlo import MonteCarlo
Expand Down Expand Up @@ -114,8 +114,8 @@
from .spark_job import SparkJob
from .schema_registry_subject import SchemaRegistrySubject
from .data_studio_asset import DataStudioAsset
from .s3_bucket import S3Bucket
from .s3_object import S3Object
# from .s3_bucket import S3Bucket
# from .s3_object import S3Object
from .a_d_l_s_account import ADLSAccount
from .a_d_l_s_container import ADLSContainer
from .a_d_l_s_object import ADLSObject
Expand Down Expand Up @@ -289,7 +289,7 @@
DbtColumnProcess.Attributes.update_forward_refs(**localns)
AirflowDag.Attributes.update_forward_refs(**localns)
AirflowTask.Attributes.update_forward_refs(**localns)
S3.Attributes.update_forward_refs(**localns)
# S3.Attributes.update_forward_refs(**localns)
ADLS.Attributes.update_forward_refs(**localns)
GCS.Attributes.update_forward_refs(**localns)
MonteCarlo.Attributes.update_forward_refs(**localns)
Expand Down Expand Up @@ -354,8 +354,8 @@
SparkJob.Attributes.update_forward_refs(**localns)
SchemaRegistrySubject.Attributes.update_forward_refs(**localns)
DataStudioAsset.Attributes.update_forward_refs(**localns)
S3Bucket.Attributes.update_forward_refs(**localns)
S3Object.Attributes.update_forward_refs(**localns)
# S3Bucket.Attributes.update_forward_refs(**localns)
# S3Object.Attributes.update_forward_refs(**localns)
ADLSAccount.Attributes.update_forward_refs(**localns)
ADLSContainer.Attributes.update_forward_refs(**localns)
ADLSObject.Attributes.update_forward_refs(**localns)
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
requests>=2.24
pydantic~=2.6.1
jinja2==3.1.3
pydantic~=2.4.2
jinja2==3.1.2
Comment on lines +2 to +3
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why was this dependency version downgraded?

networkx>=3.1
tenacity==8.2.3