diff --git a/auto-generated-sdk/README.md b/auto-generated-sdk/README.md index 74d2621..580b391 100644 --- a/auto-generated-sdk/README.md +++ b/auto-generated-sdk/README.md @@ -1,10 +1,13 @@ +## 🚨 THIS PACKAGE IS DEPRECATED! +Please use instead. + # fds.analyticsapi.engines Allow clients to fetch Analytics through APIs. This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: v3:[pa,spar,vault,pub,quant,fi,axp,afi,npo,bpm,fpo,others],v1:[fiab] -- Package version: 6.0.0 +- Package version: 6.1.0 - Build package: CustomPythonClientCodegen For more information, please visit [https://developer.factset.com/contact](https://developer.factset.com/contact) diff --git a/auto-generated-sdk/fds/__init__.py b/auto-generated-sdk/fds/__init__.py index e69de29..bb45874 100644 --- a/auto-generated-sdk/fds/__init__.py +++ b/auto-generated-sdk/fds/__init__.py @@ -0,0 +1,6 @@ +import warnings + +warnings.warn( + "This package is deprecated. Please use instead.", + DeprecationWarning +) \ No newline at end of file diff --git a/auto-generated-sdk/setup.py b/auto-generated-sdk/setup.py index 98f8459..a9762cd 100644 --- a/auto-generated-sdk/setup.py +++ b/auto-generated-sdk/setup.py @@ -14,7 +14,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "fds.analyticsapi.engines" -VERSION = "6.0.0" +VERSION = "6.1.0" # To install the library, run the following # # python setup.py install @@ -40,8 +40,12 @@ install_requires=REQUIRES, packages=find_packages(exclude=["test", "tests"]), include_package_data=True, - license="Apache License, Version 2.0", + license="Apache License, Version 2.0", + #description="DEPRECATED: Use instead.", long_description="""\ - Allow clients to fetch Analytics through APIs. # noqa: E501 - """ + This package is deprecated. Please transition to . + """, + classifiers=[ + "Development Status :: 7 - Inactive" + ], )