This is an automated email from the ASF dual-hosted git repository.
madhan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/atlas.git
The following commit(s) were added to refs/heads/master by this push:
new 9fbfd2a ATLAS-4086: python client - version update
9fbfd2a is described below
commit 9fbfd2a1e4bf88cfdfeb5ff19da89d0a9517c8df
Author: Madhan Neethiraj <[email protected]>
AuthorDate: Sat Mar 13 23:50:07 2021 -0800
ATLAS-4086: python client - version update
---
intg/src/main/python/README.md | 2 +-
intg/src/main/python/setup.py | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/intg/src/main/python/README.md b/intg/src/main/python/README.md
index 5efc49a..5c1c4d0 100644
--- a/intg/src/main/python/README.md
+++ b/intg/src/main/python/README.md
@@ -16,7 +16,7 @@ Verify if apache-atlas client is installed:
Package Version
------------ ---------
-apache-atlas 0.0.4
+apache-atlas 0.0.5
```
## Usage
diff --git a/intg/src/main/python/setup.py b/intg/src/main/python/setup.py
index 363b47f..0a4c2c2 100644
--- a/intg/src/main/python/setup.py
+++ b/intg/src/main/python/setup.py
@@ -37,7 +37,7 @@ setup(
url="https://github.com/apache/atlas/tree/master/intg/src/main/python",
license='Apache LICENSE 2.0',
classifiers=[
- "Programming Language :: Python :: 2.7",
+ "Programming Language :: Python :: 3.6",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
@@ -46,5 +46,5 @@ setup(
include_package_data=True,
zip_safe=False,
keywords='atlas client, apache atlas',
- python_requires='>=2.7',
+ python_requires='>=3.6',
)