You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@age.apache.org by jg...@apache.org on 2022/10/20 22:46:41 UTC

[age] branch master updated: Remove incubating from Python driver

This is an automated email from the ASF dual-hosted git repository.

jgemignani pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/age.git


The following commit(s) were added to refs/heads/master by this push:
     new 01e64f1  Remove incubating from Python driver
01e64f1 is described below

commit 01e64f1959e49c3b9ea07cb4545ff71cfacb3cec
Author: John Gemignani <jr...@gmail.com>
AuthorDate: Thu Oct 20 15:46:46 2022 -0700

    Remove incubating from Python driver
    
    Removed incubating from the Python driver.
---
 drivers/python/README.md | 18 +++++++++---------
 drivers/python/setup.py  |  6 +++---
 2 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/drivers/python/README.md b/drivers/python/README.md
index 7de16f5..d01b885 100644
--- a/drivers/python/README.md
+++ b/drivers/python/README.md
@@ -1,4 +1,4 @@
-# incubator-age AGType parser and driver support for Python 
+# AGE AGType parser and driver support for Python
 AGType parser and driver support for [Apache AGE](https://age.apache.org/), graph extention for PostgreSQL.
 
 ### Features
@@ -22,9 +22,9 @@ python -m unittest -v test_agtypes.py
 ```
 
 ### Build from source
-``` 
-git clone https://github.com/apache/incubator-age.git
-cd incubator-age/dirivers/python
+```
+git clone https://github.com/apache/age.git
+cd age/drivers/python
 
 python setup.py install
 
@@ -32,15 +32,15 @@ python setup.py install
 
 ### Install from PyPi
 
-``` 
+```
 pip install apache-age-python
 
 ```
 
 ### For more information about [Apache AGE](https://age.apache.org/)
-* Apache Incubator Age : https://age.apache.org/
-* Github : https://github.com/apache/incubator-age
-* Document : https://age.incubator.apache.org/docs/
+* Apache Age : https://age.apache.org/
+* Github : https://github.com/apache/age
+* Document : https://age.apache.org/age-manual/master/index.html
 * apache-age-python GitHub : https://github.com/rhizome-ai/apache-age-python
 
 ### Check AGE loaded on your PostgreSQL
@@ -58,4 +58,4 @@ SET search_path = ag_catalog, "$user", public;
 * Agtype converting samples: [Agtype Sample](samples/apache-age-agtypes.ipynb) in Samples.
 
 ### License
-Apache-2.0 License
\ No newline at end of file
+Apache-2.0 License
diff --git a/drivers/python/setup.py b/drivers/python/setup.py
index e8cf410..7d8981f 100644
--- a/drivers/python/setup.py
+++ b/drivers/python/setup.py
@@ -20,14 +20,14 @@ with open("README.md", "r", encoding='utf8') as fh:
     long_description = fh.read()
 
 setup(
-    name             = 'incubator-age',
+    name             = 'age',
     version          = VERSION.VERSION,
     description      = 'Python driver support for Apache AGE',
     long_description=long_description,
     long_description_content_type="text/markdown",
     author           = 'rhizome',
     author_email     = 'rhizome.ai@gmail.com',
-    url              = 'https://github.com/apache/incubator-age',
+    url              = 'https://github.com/apache/age',
     license          = 'Apache2.0',
     install_requires = [ 'psycopg2', 'antlr4-python3-runtime' ],
     packages         = ['age', 'age.gen'],
@@ -38,4 +38,4 @@ setup(
     classifiers      = [
         'Programming Language :: Python :: 3.9'
     ]
-)
\ No newline at end of file
+)