diff --git a/drivers/python/README.md b/drivers/python/README.md index e82e770fc..a38a4cde1 100644 --- a/drivers/python/README.md +++ b/drivers/python/README.md @@ -31,17 +31,10 @@ python -m unittest -v test_agtypes.py python setup.py install ``` -### Install from PyPi - -``` -pip install apache-age-python -``` - ### For more information about [Apache AGE](https://age.apache.org/) * 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 Connect to your containerized Postgres instance and then run the following commands: diff --git a/drivers/python/age/VERSION.py b/drivers/python/age/VERSION.py index 8a631b405..3b014ea5b 100644 --- a/drivers/python/age/VERSION.py +++ b/drivers/python/age/VERSION.py @@ -15,8 +15,8 @@ -VER_MAJOR = 0 +VER_MAJOR = 1 VER_MINOR = 0 -VER_MICRO = 3 +VER_MICRO = 0 VERSION = '.'.join([str(VER_MAJOR),str(VER_MINOR),str(VER_MICRO)])