Skip to content

Commit e1111fe

Browse files
committed
deprecate library on pypi
1 parent 51cdd09 commit e1111fe

3 files changed

Lines changed: 18 additions & 5 deletions

File tree

auto-generated-sdk/README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1+
## 🚨 THIS PACKAGE IS DEPRECATED!
2+
Please use <https://pypi.org/search/?q=%22fds.sdk%22> instead.
3+
14
# fds.analyticsapi.engines
25
Allow clients to fetch Analytics through APIs.
36

47
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
58

69
- API version: v3:[pa,spar,vault,pub,quant,fi,axp,afi,npo,bpm,fpo,others],v1:[fiab]
7-
- Package version: 6.0.0
10+
- Package version: 6.1.0
811
- Build package: CustomPythonClientCodegen
912
For more information, please visit [https://developer.factset.com/contact](https://developer.factset.com/contact)
1013

auto-generated-sdk/fds/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import warnings
2+
3+
warnings.warn(
4+
"This package is deprecated. Please use <https://pypi.org/search/?q=%22fds.sdk%22> instead.",
5+
DeprecationWarning
6+
)

auto-generated-sdk/setup.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from setuptools import setup, find_packages # noqa: H301
1515

1616
NAME = "fds.analyticsapi.engines"
17-
VERSION = "6.0.0"
17+
VERSION = "6.1.0"
1818
# To install the library, run the following
1919
#
2020
# python setup.py install
@@ -40,8 +40,12 @@
4040
install_requires=REQUIRES,
4141
packages=find_packages(exclude=["test", "tests"]),
4242
include_package_data=True,
43-
license="Apache License, Version 2.0",
43+
license="Apache License, Version 2.0",
44+
description="DEPRECATED: Use <https://pypi.org/search/?q=%22fds.sdk%22> instead.",
4445
long_description="""\
45-
Allow clients to fetch Analytics through APIs. # noqa: E501
46-
"""
46+
This package is deprecated. Please transition to <https://pypi.org/search/?q=%22fds.sdk%22>.
47+
""",
48+
classifiers=[
49+
"Development Status :: 7 - Inactive"
50+
],
4751
)

0 commit comments

Comments
 (0)